| OLD | NEW |
| 1 # Copyright 2011 the V8 project authors. All rights reserved. | 1 # Copyright 2011 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 | 100 |
| 101 # Some tests are just too slow to run for now. | 101 # Some tests are just too slow to run for now. |
| 102 'test-api/Threading*': [PASS, NO_VARIANTS], | 102 'test-api/Threading*': [PASS, NO_VARIANTS], |
| 103 'test-api/RequestInterruptTestWithMathAbs': [PASS, NO_VARIANTS], | 103 'test-api/RequestInterruptTestWithMathAbs': [PASS, NO_VARIANTS], |
| 104 'test-heap/IncrementalMarkingStepMakesBigProgressWithLargeObjects': [PASS, NO_
VARIANTS], | 104 'test-heap/IncrementalMarkingStepMakesBigProgressWithLargeObjects': [PASS, NO_
VARIANTS], |
| 105 'test-heap-profiler/ManyLocalsInSharedContext': [PASS, NO_VARIANTS], | 105 'test-heap-profiler/ManyLocalsInSharedContext': [PASS, NO_VARIANTS], |
| 106 'test-debug/ThreadedDebugging': [PASS, NO_VARIANTS], | 106 'test-debug/ThreadedDebugging': [PASS, NO_VARIANTS], |
| 107 'test-debug/DebugBreakLoop': [PASS, NO_VARIANTS], | 107 'test-debug/DebugBreakLoop': [PASS, NO_VARIANTS], |
| 108 | 108 |
| 109 # Support for lazy deoptimization is missing. | 109 # Support for lazy deoptimization is missing. |
| 110 'test-deoptimization/DeoptimizeSimple': [PASS, NO_VARIANTS], |
| 111 'test-deoptimization/DeoptimizeSimpleNested': [PASS, NO_VARIANTS], |
| 112 'test-deoptimization/DeoptimizeSimpleWithArguments': [PASS, NO_VARIANTS], |
| 113 'test-deoptimization/DeoptimizeBinaryOperation*': [PASS, NO_VARIANTS], |
| 110 'test-deoptimization/DeoptimizeCompare': [PASS, NO_VARIANTS], | 114 'test-deoptimization/DeoptimizeCompare': [PASS, NO_VARIANTS], |
| 115 'test-deoptimization/DeoptimizeLoadICStoreIC': [PASS, NO_VARIANTS], |
| 116 'test-deoptimization/DeoptimizeLoadICStoreICNested': [PASS, NO_VARIANTS], |
| 111 | 117 |
| 112 # Support for breakpoints requires using LoadICs and StoreICs. | 118 # Support for breakpoints requires using LoadICs and StoreICs. |
| 113 'test-debug/BreakPointICStore': [PASS, NO_VARIANTS], | 119 'test-debug/BreakPointICStore': [PASS, NO_VARIANTS], |
| 114 'test-debug/BreakPointICLoad': [PASS, NO_VARIANTS], | 120 'test-debug/BreakPointICLoad': [PASS, NO_VARIANTS], |
| 115 'test-debug/BreakPointICCall': [PASS, NO_VARIANTS], | 121 'test-debug/BreakPointICCall': [PASS, NO_VARIANTS], |
| 116 'test-debug/BreakPointICCallWithGC': [PASS, NO_VARIANTS], | 122 'test-debug/BreakPointICCallWithGC': [PASS, NO_VARIANTS], |
| 117 'test-debug/BreakPointConstructCallWithGC': [PASS, NO_VARIANTS], | 123 'test-debug/BreakPointConstructCallWithGC': [PASS, NO_VARIANTS], |
| 118 'test-debug/BreakPointReturn': [PASS, NO_VARIANTS], | 124 'test-debug/BreakPointReturn': [PASS, NO_VARIANTS], |
| 119 'test-debug/BreakPointThroughJavaScript': [PASS, NO_VARIANTS], | 125 'test-debug/BreakPointThroughJavaScript': [PASS, NO_VARIANTS], |
| 120 'test-debug/ScriptBreakPointByNameThroughJavaScript': [PASS, NO_VARIANTS], | 126 'test-debug/ScriptBreakPointByNameThroughJavaScript': [PASS, NO_VARIANTS], |
| (...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 455 'test-api/Float32Array' : [SKIP], | 461 'test-api/Float32Array' : [SKIP], |
| 456 'test-api/Float64Array' : [SKIP], | 462 'test-api/Float64Array' : [SKIP], |
| 457 'test-api/Regress2333' : [SKIP], | 463 'test-api/Regress2333' : [SKIP], |
| 458 'test-alloc/StressHandles' : [SKIP], | 464 'test-alloc/StressHandles' : [SKIP], |
| 459 'test-alloc/StressJS' : [SKIP], | 465 'test-alloc/StressJS' : [SKIP], |
| 460 'test-accessors/HandleScopePop' : [SKIP], | 466 'test-accessors/HandleScopePop' : [SKIP], |
| 461 'test-accessors/Gc' : [SKIP], | 467 'test-accessors/Gc' : [SKIP], |
| 462 | 468 |
| 463 }], # 'arch == nacl_ia32 or arch == nacl_x64' | 469 }], # 'arch == nacl_ia32 or arch == nacl_x64' |
| 464 ] | 470 ] |
| OLD | NEW |