Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(316)

Side by Side Diff: ppapi/native_client/tests/ppapi_browser/ppb_url_request_info/nacl.scons

Issue 9174020: PPAPI URLRequestInfo test: port NaCl version to ppapi_tests. Fix Var and Resource leaks. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # -*- python -*- 1 # -*- python -*-
2 # Copyright (c) 2011 The Native Client Authors. All rights reserved. 2 # Copyright (c) 2011 The Native Client Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 # 5 #
6 # This test uses ppapi_test_lib. 6 # This test uses ppapi_test_lib.
7 7
8 Import('env') 8 Import('env')
9 9
10 env.Prepend(CPPDEFINES=['XP_UNIX']) 10 env.Prepend(CPPDEFINES=['XP_UNIX'])
(...skipping 18 matching lines...) Expand all
29 ['ppapi_ppb_url_request_info.html', 29 ['ppapi_ppb_url_request_info.html',
30 'ppapi_ppb_url_request_info.js']) 30 'ppapi_ppb_url_request_info.js'])
31 31
32 node = env.PPAPIBrowserTester( 32 node = env.PPAPIBrowserTester(
33 'ppapi_ppb_url_request_info_browser_test.out', 33 'ppapi_ppb_url_request_info_browser_test.out',
34 url='ppapi_ppb_url_request_info.html', 34 url='ppapi_ppb_url_request_info.html',
35 nmfs=['${TEST_DIR}/ppapi_ppb_url_request_info.nmf'], 35 nmfs=['${TEST_DIR}/ppapi_ppb_url_request_info.nmf'],
36 files=env.ExtractPublishedFiles(nexe), 36 files=env.ExtractPublishedFiles(nexe),
37 browser_flags=['--enable-pepper-testing']) 37 browser_flags=['--enable-pepper-testing'])
38 38
39 # This test is being deprecated and is no longer part of chrome_browser_tests
40 # that are run automatically during nacl_intergration on the chrome bots.
41 # It is still around for reference when fixing and porting TestAppendFileToBody.
42 # see crbug.com/110242.
39 env.AddNodeToTestSuite(node, 43 env.AddNodeToTestSuite(node,
40 ['chrome_browser_tests'], 44 ['chrome_browser_tests'],
41 'run_ppapi_ppb_url_request_info_browser_test', 45 'run_ppapi_ppb_url_request_info_browser_test',
42 is_broken=env.PPAPIBrowserTesterIsBroken()) 46 is_broken=True)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698