| 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 447 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 458 }], # 'no_i18n == True and mode == debug' | 458 }], # 'no_i18n == True and mode == debug' |
| 459 | 459 |
| 460 ############################################################################## | 460 ############################################################################## |
| 461 ['byteorder == big', { | 461 ['byteorder == big', { |
| 462 # Emscripten requires little-endian, skip all tests on big endian platforms. | 462 # Emscripten requires little-endian, skip all tests on big endian platforms. |
| 463 'asm/embenchen/*': [SKIP], | 463 'asm/embenchen/*': [SKIP], |
| 464 'asm/poppler/*': [SKIP], | 464 'asm/poppler/*': [SKIP], |
| 465 'asm/sqlite3/*': [SKIP], | 465 'asm/sqlite3/*': [SKIP], |
| 466 # TODO(mips-team): Fix Wasm for big-endian. | 466 # TODO(mips-team): Fix Wasm for big-endian. |
| 467 'wasm/*': [SKIP], | 467 'wasm/*': [SKIP], |
| 468 'regress/regress-599717': [SKIP], |
| 469 'regress/regress-599719': [SKIP], |
| 468 }], # 'byteorder == big' | 470 }], # 'byteorder == big' |
| 469 | 471 |
| 470 ############################################################################## | 472 ############################################################################## |
| 471 ['arch == arm64 or arch == android_arm64', { | 473 ['arch == arm64 or arch == android_arm64', { |
| 472 | 474 |
| 473 # arm64 TF timeout. | 475 # arm64 TF timeout. |
| 474 'regress/regress-1257': [PASS, TIMEOUT], | 476 'regress/regress-1257': [PASS, TIMEOUT], |
| 475 | 477 |
| 476 # Requires bigger stack size in the Genesis and if stack size is increased, | 478 # Requires bigger stack size in the Genesis and if stack size is increased, |
| 477 # the test requires too much time to run. However, the problem test covers | 479 # the test requires too much time to run. However, the problem test covers |
| (...skipping 478 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 956 ############################################################################## | 958 ############################################################################## |
| 957 ['gcov_coverage', { | 959 ['gcov_coverage', { |
| 958 # Tests taking too long. | 960 # Tests taking too long. |
| 959 'array-functions-prototype-misc': [SKIP], | 961 'array-functions-prototype-misc': [SKIP], |
| 960 | 962 |
| 961 # Stack overflow. | 963 # Stack overflow. |
| 962 'big-array-literal': [SKIP], | 964 'big-array-literal': [SKIP], |
| 963 }], # 'gcov_coverage' | 965 }], # 'gcov_coverage' |
| 964 | 966 |
| 965 ] | 967 ] |
| OLD | NEW |