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

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

Issue 7740013: Cloning a bunch of stuff from the native_client repository at r6528 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 4 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
(Empty)
1 # -*- python -*-
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
4 # found in the LICENSE file.
5
6
7 Import('env')
8
9 stress_files = [
10 env.File('stress_many_nexes.html'),
11 env.File('${SCONSTRUCT_DIR}/tools/browser_tester/browserdata/nacltest.js'),
12 ]
13 replicated_files = env.Replicate('${STAGING_DIR}', stress_files)
14 env.Alias('all_programs', replicated_files)
15
16 core = env.File('${STAGING_DIR}/ppapi_ppb_core_${TARGET_FULLARCH}${PROGSUFFIX}')
17 nmf = env.File('${STAGING_DIR}/ppapi_ppb_core.nmf')
18 stress_files.extend([core, nmf])
19
20 node = env.PPAPIBrowserTester(
21 'stress_many_nexes_test.out',
22 url='stress_many_nexes.html',
23 test_args=(('count', 100), ('parallel', 0)),
24 timeout=200,
25 files=stress_files)
26
27 env.AddNodeToTestSuite(node,
28 ['chrome_browser_tests'],
29 'run_stress_many_nexes_test',
30 # Don't run this test automatically. It can cause random
31 # processes to die on a machine, etc.
32 is_broken=True)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698