| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 nmf=nmfs, | 50 nmf=nmfs, |
| 51 files=published_files) | 51 files=published_files) |
| 52 | 52 |
| 53 env.AddNodeToTestSuite(node, | 53 env.AddNodeToTestSuite(node, |
| 54 ['chrome_browser_tests'], | 54 ['chrome_browser_tests'], |
| 55 'run_ppapi_crash_browser_test', | 55 'run_ppapi_crash_browser_test', |
| 56 is_broken=env.PPAPIBrowserTesterIsBroken() or | 56 is_broken=env.PPAPIBrowserTesterIsBroken() or |
| 57 env.Bit('nacl_glibc') or | 57 env.Bit('nacl_glibc')) |
| 58 # TODO(halyavin): re-enable this when fixed. | |
| 59 True | |
| 60 ) | |
| OLD | NEW |