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

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

Issue 8101007: Turn off tests that are failing on Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 2 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
« no previous file with comments | « ppapi/native_client/tests/ppapi_browser/bad/nacl.scons ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 # Tests fatal errors that occur after loading. 6 # Tests fatal errors that occur after loading.
7 # (See ppapi_browser/bad for fatal errors that occur during loading). 7 # (See ppapi_browser/bad for fatal errors that occur during loading).
8 # 8 #
9 # The tests use ppapi_test_lib. 9 # The tests use ppapi_test_lib.
10 10
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 nmfs.append('${TEST_DIR}/ppapi_crash_%s.nmf' % crash_type) 42 nmfs.append('${TEST_DIR}/ppapi_crash_%s.nmf' % crash_type)
43 env.Publish(nexe, 'run', 43 env.Publish(nexe, 'run',
44 ['ppapi_crash.html']) 44 ['ppapi_crash.html'])
45 45
46 published_files.extend(env.ExtractPublishedFiles(nexe)) 46 published_files.extend(env.ExtractPublishedFiles(nexe))
47 47
48 node = env.PPAPIBrowserTester('ppapi_crash_browser_test.out', 48 node = env.PPAPIBrowserTester('ppapi_crash_browser_test.out',
49 url='ppapi_crash.html', 49 url='ppapi_crash.html',
50 nmfs=nmfs, 50 nmfs=nmfs,
51 files=published_files) 51 files=published_files)
52 52 # This test is failing on Windows:
53 # crbug.com/98721
53 env.AddNodeToTestSuite(node, 54 env.AddNodeToTestSuite(node,
54 ['chrome_browser_tests'], 55 ['chrome_browser_tests'],
55 'run_ppapi_crash_browser_test', 56 'run_ppapi_crash_browser_test',
56 is_broken=env.PPAPIBrowserTesterIsBroken()) 57 is_broken=env.PPAPIBrowserTesterIsBroken() or
58 env.Bit('host_windows'))
OLDNEW
« no previous file with comments | « ppapi/native_client/tests/ppapi_browser/bad/nacl.scons ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698