| OLD | NEW |
| 1 # Copyright 2012 the V8 project authors. All rights reserved. | 1 # Copyright 2012 the V8 project authors. All rights reserved. |
| 2 # Redistribution and use in source and binary forms, with or without | 2 # Redistribution and use in source and binary forms, with or without |
| 3 # modification, are permitted provided that the following conditions are | 3 # modification, are permitted provided that the following conditions are |
| 4 # met: | 4 # met: |
| 5 # | 5 # |
| 6 # * Redistributions of source code must retain the above copyright | 6 # * Redistributions of source code must retain the above copyright |
| 7 # notice, this list of conditions and the following disclaimer. | 7 # notice, this list of conditions and the following disclaimer. |
| 8 # * Redistributions in binary form must reproduce the above | 8 # * Redistributions in binary form must reproduce the above |
| 9 # copyright notice, this list of conditions and the following | 9 # copyright notice, this list of conditions and the following |
| 10 # disclaimer in the documentation and/or other materials provided | 10 # disclaimer in the documentation and/or other materials provided |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 # used in multi-threaded runs. | 78 # used in multi-threaded runs. |
| 79 # On android there is no /tmp directory. | 79 # On android there is no /tmp directory. |
| 80 d8-os: PASS, SKIP if ($isolates || $arch == android_arm || $arch == android_ia32
) | 80 d8-os: PASS, SKIP if ($isolates || $arch == android_arm || $arch == android_ia32
) |
| 81 tools/tickprocessor: PASS, SKIP if ($arch == android_arm || $arch == android_ia3
2) | 81 tools/tickprocessor: PASS, SKIP if ($arch == android_arm || $arch == android_ia3
2) |
| 82 | 82 |
| 83 ############################################################################## | 83 ############################################################################## |
| 84 # Long running test that reproduces memory leak and should be run manually. | 84 # Long running test that reproduces memory leak and should be run manually. |
| 85 regress/regress-2073: SKIP | 85 regress/regress-2073: SKIP |
| 86 | 86 |
| 87 ############################################################################## | 87 ############################################################################## |
| 88 # Native Client uses the ARM simulator so will behave similarly on |
| 89 # mjsunit tests. |
| 90 # TODO(bradchen): enable more tests for NaCl V8 when it stops using |
| 91 # the ARM simulator. |
| 92 ############################################################################## |
| 93 [ $arch == nacl_ia32 || $arch == nacl_x64 ] |
| 94 # There is no /tmp directory for NaCl runs |
| 95 d8-os: SKIP |
| 96 |
| 97 # Stack manipulations in LiveEdit is not implemented for this arch. |
| 98 debug-liveedit-check-stack: SKIP |
| 99 debug-liveedit-stack-padding: SKIP |
| 100 debug-liveedit-restart-frame: SKIP |
| 101 debug-liveedit-double-call: SKIP |
| 102 |
| 103 # Failure; needs to be investigated |
| 104 fuzz-natives-part4.js: SKIP |
| 105 |
| 106 # Requires bigger stack size in the Genesis and if stack size is increased, |
| 107 # the test requires too much time to run. However, the problem test covers |
| 108 # should be platform-independent. |
| 109 regress/regress-1132: SKIP |
| 110 |
| 111 # Poor performance for NaCl V8 causes an assertion failure for this test. |
| 112 regress/regress-165637: SKIP |
| 113 |
| 114 ############################################################################## |
| 88 [ $arch == arm || $arch == android_arm ] | 115 [ $arch == arm || $arch == android_arm ] |
| 89 | 116 |
| 90 # Slow tests which times out in debug mode. | 117 # Slow tests which times out in debug mode. |
| 91 try: PASS, SKIP if $mode == debug | 118 try: PASS, SKIP if $mode == debug |
| 92 debug-scripts-request: PASS, SKIP if $mode == debug | 119 debug-scripts-request: PASS, SKIP if $mode == debug |
| 93 array-constructor: PASS, SKIP if $mode == debug | 120 array-constructor: PASS, SKIP if $mode == debug |
| 94 regress/regress-1122: PASS, SKIP if ($mode == debug && $arch == android_arm) | 121 regress/regress-1122: PASS, SKIP if ($mode == debug && $arch == android_arm) |
| 95 | 122 |
| 96 # Flaky test that can hit compilation-time stack overflow in debug mode. | 123 # Flaky test that can hit compilation-time stack overflow in debug mode. |
| 97 unicode-test: PASS, (PASS || FAIL) if $mode == debug | 124 unicode-test: PASS, (PASS || FAIL) if $mode == debug |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 # the test requires too much time to run. However, the problem test covers | 217 # the test requires too much time to run. However, the problem test covers |
| 191 # should be platform-independent. | 218 # should be platform-independent. |
| 192 regress/regress-1132: SKIP | 219 regress/regress-1132: SKIP |
| 193 | 220 |
| 194 # Stack manipulations in LiveEdit is not implemented for this arch. | 221 # Stack manipulations in LiveEdit is not implemented for this arch. |
| 195 debug-liveedit-check-stack: SKIP | 222 debug-liveedit-check-stack: SKIP |
| 196 debug-liveedit-stack-padding: SKIP | 223 debug-liveedit-stack-padding: SKIP |
| 197 debug-liveedit-restart-frame: SKIP | 224 debug-liveedit-restart-frame: SKIP |
| 198 debug-liveedit-double-call: SKIP | 225 debug-liveedit-double-call: SKIP |
| 199 | 226 |
| OLD | NEW |