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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 # are actually 13 * 38 * 5 * 128 = 316160 individual tests hidden here. | 64 # are actually 13 * 38 * 5 * 128 = 316160 individual tests hidden here. |
65 'test-parsing/ParserSync': [PASS, NO_VARIANTS], | 65 'test-parsing/ParserSync': [PASS, NO_VARIANTS], |
66 | 66 |
67 # This tests only the type system, no point in running several variants. | 67 # This tests only the type system, no point in running several variants. |
68 'test-hydrogen-types/*': [PASS, NO_VARIANTS], | 68 'test-hydrogen-types/*': [PASS, NO_VARIANTS], |
69 'test-types/*': [PASS, NO_VARIANTS], | 69 'test-types/*': [PASS, NO_VARIANTS], |
70 | 70 |
71 # This tests API threading, no point in running several variants. | 71 # This tests API threading, no point in running several variants. |
72 'test-api/Threading*': [PASS, NO_VARIANTS], | 72 'test-api/Threading*': [PASS, NO_VARIANTS], |
73 | 73 |
74 # Parser fixes break the function name inference in the constructor. | |
75 # BUG(4331) | |
76 'test-func-name-inference/InConstructor': [SKIP], | |
77 | |
78 # The cpu profiler tests are notoriously flaky. | 74 # The cpu profiler tests are notoriously flaky. |
79 # BUG(2999). (test/cpu-profiler/CollectCpuProfile) | 75 # BUG(2999). (test/cpu-profiler/CollectCpuProfile) |
80 # BUG(3287). (test-cpu-profiler/SampleWhenFrameIsNotSetup) | 76 # BUG(3287). (test-cpu-profiler/SampleWhenFrameIsNotSetup) |
81 'test-cpu-profiler/CollectCpuProfile': [SKIP], | 77 'test-cpu-profiler/CollectCpuProfile': [SKIP], |
82 'test-cpu-profiler/CollectCpuProfileSamples': [SKIP], | 78 'test-cpu-profiler/CollectCpuProfileSamples': [SKIP], |
83 'test-cpu-profiler/FunctionApplySample': [SKIP], | 79 'test-cpu-profiler/FunctionApplySample': [SKIP], |
84 'test-cpu-profiler/FunctionCallSample': [SKIP], | 80 'test-cpu-profiler/FunctionCallSample': [SKIP], |
85 'test-cpu-profiler/SampleWhenFrameIsNotSetup': [SKIP], | 81 'test-cpu-profiler/SampleWhenFrameIsNotSetup': [SKIP], |
86 'test-cpu-profiler/HotDeoptNoFrameEntry': [SKIP], | 82 'test-cpu-profiler/HotDeoptNoFrameEntry': [SKIP], |
87 'test-cpu-profiler/BoundFunctionCall': [SKIP], | 83 'test-cpu-profiler/BoundFunctionCall': [SKIP], |
(...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
430 ############################################################################## | 426 ############################################################################## |
431 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { | 427 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { |
432 | 428 |
433 # Pass but take too long with the simulator. | 429 # Pass but take too long with the simulator. |
434 'test-api/Threading1': [PASS, SLOW], | 430 'test-api/Threading1': [PASS, SLOW], |
435 'test-api/Threading2': [PASS, SLOW], | 431 'test-api/Threading2': [PASS, SLOW], |
436 'test-api/ExternalArrays': [PASS, SLOW], | 432 'test-api/ExternalArrays': [PASS, SLOW], |
437 | 433 |
438 }], # 'arch == ppc64 and simulator_run == True' | 434 }], # 'arch == ppc64 and simulator_run == True' |
439 ] | 435 ] |
OLD | NEW |