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 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
375 ############################################################################## | 375 ############################################################################## |
376 ['arch == android_arm or arch == android_ia32', { | 376 ['arch == android_arm or arch == android_ia32', { |
377 | 377 |
378 # Tests crash as there is no /tmp directory in Android. | 378 # Tests crash as there is no /tmp directory in Android. |
379 'test-log/LogAccessorCallbacks': [SKIP], | 379 'test-log/LogAccessorCallbacks': [SKIP], |
380 'test-log/LogCallbacks': [SKIP], | 380 'test-log/LogCallbacks': [SKIP], |
381 'test-log/ProfLazyMode': [SKIP], | 381 'test-log/ProfLazyMode': [SKIP], |
382 }], # 'arch == android_arm or arch == android_ia32' | 382 }], # 'arch == android_arm or arch == android_ia32' |
383 | 383 |
384 ############################################################################## | 384 ############################################################################## |
385 ['arch == nacl_ia32 or arch == nacl_x64', { | |
386 | |
387 # NaCl builds have problems with threaded tests since Pepper_28. | |
388 # V8 Issue 2786 | |
389 'test-api/Threading1': [SKIP], | |
390 'test-lockers/ExtensionsRegistration': [SKIP], | |
391 | |
392 # These tests fail as there is no /tmp directory in Native Client. | |
393 'test-log/LogAccessorCallbacks': [SKIP], | |
394 'test-log/LogCallbacks': [SKIP], | |
395 'test-log/ProfLazyMode': [SKIP], | |
396 | |
397 # Native Client doesn't support sockets. | |
398 'test-debug/DebuggerAgent': [SKIP], | |
399 'test-debug/DebuggerAgentProtocolOverflowHeader': [SKIP], | |
400 'test-socket/Socket': [SKIP], | |
401 | |
402 # Profiling doesn't work on Native Client. | |
403 'test-cpu-profiler/*': [SKIP], | |
404 | |
405 # Fails since 16322 (new test). | |
406 'test-code-stubs-arm/ConvertDToI': [SKIP], | |
407 | |
408 # BUG(2998). | |
409 'test-macro-assembler-arm/LoadAndStoreWithRepresentation': [SKIP], | |
410 | |
411 # BUG(3150). | |
412 'test-api/PreCompileInvalidPreparseDataError': [SKIP], | |
413 | |
414 'test-types/Convert' : [SKIP], | |
415 'test-symbols/Create' : [SKIP], | |
416 'test-parsing/ParserSync' : [SKIP], | |
417 'test-parsing/ErrorsEvalAndArguments' : [SKIP], | |
418 'test-parsing/ErrorsFutureStrictReservedWords' : [SKIP], | |
419 'test-parsing/ErrorsReservedWords' : [SKIP], | |
420 'test-parsing/ErrorsYieldStrict' : [SKIP], | |
421 'test-parsing/ErrorsNotAnIdentifierName' : [SKIP], | |
422 'test-parsing/FunctionDeclaresItselfStrict' : [SKIP], | |
423 'test-parsing/ErrorsObjectLiteralChecking' : [SKIP], | |
424 'test-parsing/InvalidLeftHandSide' : [SKIP], | |
425 'test-heap/GarbageCollection' : [SKIP], | |
426 'test-heap/GlobalHandles' : [SKIP], | |
427 'test-heap/WeakGlobalHandlesScavenge' : [SKIP], | |
428 'test-heap/DeleteWeakGlobalHandle' : [SKIP], | |
429 'test-heap/GrowAndShrinkNewSpace' : [SKIP], | |
430 'test-heap/OptimizedAllocationAlwaysInNewSpace' : [SKIP], | |
431 'test-heap/OptimizedPretenuringAllocationFolding' : [SKIP], | |
432 'test-heap/OptimizedPretenuringObjectArrayLiterals' : [SKIP], | |
433 'test-heap/OptimizedPretenuringAllocationFoldingBlocks' : [SKIP], | |
434 'test-heap/OptimizedPretenuringMixedInObjectProperties' : [SKIP], | |
435 'test-heap/OptimizedPretenuringDoubleArrayProperties' : [SKIP], | |
436 'test-heap/OptimizedPretenuringdoubleArrayLiterals' : [SKIP], | |
437 'test-heap/OptimizedPretenuringNestedMixedArrayLiterals' : [SKIP], | |
438 'test-heap/OptimizedPretenuringNestedObjectLiterals' : [SKIP], | |
439 'test-heap/OptimizedPretenuringNestedDoubleLiterals' : [SKIP], | |
440 'test-heap/Regress169928' : [SKIP], | |
441 'test-decls/Unknown' : [SKIP], | |
442 'test-decls/Present' : [SKIP], | |
443 'test-decls/Absent' : [SKIP], | |
444 'test-decls/Appearing' : [SKIP], | |
445 'test-decls/Reappearing' : [SKIP], | |
446 'test-decls/ExistsInPrototype' : [SKIP], | |
447 'test-decls/AbsentInPrototype' : [SKIP], | |
448 'test-decls/ExistsInHiddenPrototype' : [SKIP], | |
449 'test-debug/ConditionalScriptBreakPoint' : [SKIP], | |
450 'test-debug/DebugEvaluate' : [SKIP], | |
451 'test-debug/ConditionalBreakpointWithCodeGenerationDisallowed' : [SKIP], | |
452 'test-debug/DebugEvaluateWithCodeGenerationDisallowed' : [SKIP], | |
453 'test-debug/DebugBreak' : [SKIP], | |
454 'test-debug/ThreadedDebugging' : [SKIP], | |
455 'test-debug/RecursiveBreakpoints' : [SKIP], | |
456 'test-dictionary/HashMap' : [SKIP], | |
457 'test-debug/Backtrace' : [SKIP], | |
458 'test-debug/DebugBreakLoop' : [SKIP], | |
459 'test-constantpool/ConstantPool' : [SKIP], | |
460 'test-compiler/GetScriptLineNumber' : [SKIP], | |
461 'test-api/ScriptMakingExternalString' : [SKIP], | |
462 'test-api/ScriptMakingExternalOneByteString' : [SKIP], | |
463 'test-api/MakingExternalStringConditions' : [SKIP], | |
464 'test-api/MakingExternalOneByteStringConditions' : [SKIP], | |
465 'test-api/MakingExternalUnalignedOneByteString' : [SKIP], | |
466 'test-api/IndexedInterceptorUnboxedDoubleWithIndexedAccessor' : [SKIP], | |
467 'test-api/IndependentWeakHandle' : [SKIP], | |
468 'test-api/GCFromWeakCallbacks' : [SKIP], | |
469 'test-api/IndependentHandleRevival' : [SKIP], | |
470 'test-api/StringWrite' : [SKIP], | |
471 'test-api/Threading3' : [SKIP], | |
472 'test-api/Threading4' : [SKIP], | |
473 'test-api/Threading2' : [SKIP], | |
474 'test-api/FixedFloat32Array' : [SKIP], | |
475 'test-api/FixedFloat64Array' : [SKIP], | |
476 'test-api/ExternalFloat32Array' : [SKIP], | |
477 'test-api/ExternalFloat64Array' : [SKIP], | |
478 'test-api/ExternalArrays' : [SKIP], | |
479 'test-api/Float32Array' : [SKIP], | |
480 'test-api/Float64Array' : [SKIP], | |
481 'test-api/Regress2333' : [SKIP], | |
482 'test-alloc/StressHandles' : [SKIP], | |
483 'test-alloc/StressJS' : [SKIP], | |
484 'test-accessors/HandleScopePop' : [SKIP], | |
485 'test-accessors/Gc' : [SKIP], | |
486 | |
487 }], # 'arch == nacl_ia32 or arch == nacl_x64' | |
488 | |
489 ############################################################################## | |
490 ['system == aix and arch == ppc64', { | 385 ['system == aix and arch == ppc64', { |
491 | 386 |
492 # BUG 2857 | 387 # BUG 2857 |
493 'test-log/EquivalenceOfLoggingAndTraversal' : [SKIP], | 388 'test-log/EquivalenceOfLoggingAndTraversal' : [SKIP], |
494 | 389 |
495 }], # 'system == aix and arch == ppc64' | 390 }], # 'system == aix and arch == ppc64' |
496 | 391 |
497 ############################################################################## | 392 ############################################################################## |
498 ['system == aix or (arch == ppc64 and byteorder == big)', { | 393 ['system == aix or (arch == ppc64 and byteorder == big)', { |
499 | 394 |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
563 'test-heap/OptimizedPretenuringNestedDoubleLiterals': [FAIL], | 458 'test-heap/OptimizedPretenuringNestedDoubleLiterals': [FAIL], |
564 'test-heap/OptimizedPretenuringNestedMixedArrayLiterals': [FAIL], | 459 'test-heap/OptimizedPretenuringNestedMixedArrayLiterals': [FAIL], |
565 'test-heap/OptimizedPretenuringNestedObjectLiterals': [FAIL], | 460 'test-heap/OptimizedPretenuringNestedObjectLiterals': [FAIL], |
566 'test-heap/OptimizedPretenuringObjectArrayLiterals': [FAIL], | 461 'test-heap/OptimizedPretenuringObjectArrayLiterals': [FAIL], |
567 | 462 |
568 # BUG(4751). Flaky with Ignition. | 463 # BUG(4751). Flaky with Ignition. |
569 'test-cpu-profiler/JsNativeJsSample': [SKIP], | 464 'test-cpu-profiler/JsNativeJsSample': [SKIP], |
570 }], # ignition or ignition_turbofan | 465 }], # ignition or ignition_turbofan |
571 | 466 |
572 ] | 467 ] |
OLD | NEW |