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 during loading. | 6 # Tests fatal errors that occur during loading. |
7 # (See ppapi_browser/crash for fatal errors that occur after loading). | 7 # (See ppapi_browser/crash for fatal errors that occur after loading). |
8 # TODO(polina): rename the directory and browser test to bad_load | 8 # TODO(polina): rename the directory and browser test to bad_load |
9 # | 9 # |
10 # Manual testing with localhost:5103/scons-out/.../staging/ppapi_bad.html: | 10 # Manual testing with localhost:5103/scons-out/.../staging/ppapi_bad.html: |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 url='ppapi_bad_native.html', | 91 url='ppapi_bad_native.html', |
92 nmf='${TEST_DIR}/partly_invalid.nmf', | 92 nmf='${TEST_DIR}/partly_invalid.nmf', |
93 files=ppapi_bad_native_files, | 93 files=ppapi_bad_native_files, |
94 ) | 94 ) |
95 | 95 |
96 env.AddNodeToTestSuite(node, | 96 env.AddNodeToTestSuite(node, |
97 ['chrome_browser_tests'], | 97 ['chrome_browser_tests'], |
98 'run_ppapi_bad_native_test', | 98 'run_ppapi_bad_native_test', |
99 is_broken=env.PPAPIBrowserTesterIsBroken() or | 99 is_broken=env.PPAPIBrowserTesterIsBroken() or |
100 env.Bit('nacl_glibc') or | 100 env.Bit('nacl_glibc') or |
101 env.Bit('bitcode') or | 101 env.Bit('bitcode')) |
102 # TODO(halyavin): re-enable this when fixed. | |
103 True | |
104 ) | |
OLD | NEW |