| OLD | NEW |
| 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 Loading... |
| 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')) |
| OLD | NEW |