| 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 405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 416 }], # 'no_i18n == True and mode == debug' | 416 }], # 'no_i18n == True and mode == debug' |
| 417 | 417 |
| 418 ############################################################################## | 418 ############################################################################## |
| 419 ['byteorder == big', { | 419 ['byteorder == big', { |
| 420 # Emscripten requires little-endian, skip all tests on big endian platforms. | 420 # Emscripten requires little-endian, skip all tests on big endian platforms. |
| 421 'asm/embenchen/*': [SKIP], | 421 'asm/embenchen/*': [SKIP], |
| 422 'asm/poppler/*': [SKIP], | 422 'asm/poppler/*': [SKIP], |
| 423 'asm/sqlite3/*': [SKIP], | 423 'asm/sqlite3/*': [SKIP], |
| 424 # TODO(mips-team): Fix Wasm for big-endian. | 424 # TODO(mips-team): Fix Wasm for big-endian. |
| 425 'wasm/*': [SKIP], | 425 'wasm/*': [SKIP], |
| 426 'regress/regress-599717': [SKIP], | |
| 427 'regress/regress-599719': [SKIP], | |
| 428 }], # 'byteorder == big' | 426 }], # 'byteorder == big' |
| 429 | 427 |
| 430 ############################################################################## | 428 ############################################################################## |
| 431 ['arch == arm64 or arch == android_arm64', { | 429 ['arch == arm64 or arch == android_arm64', { |
| 432 | 430 |
| 433 # arm64 TF timeout. | 431 # arm64 TF timeout. |
| 434 'regress/regress-1257': [PASS, TIMEOUT], | 432 'regress/regress-1257': [PASS, TIMEOUT], |
| 435 | 433 |
| 436 # Requires bigger stack size in the Genesis and if stack size is increased, | 434 # Requires bigger stack size in the Genesis and if stack size is increased, |
| 437 # the test requires too much time to run. However, the problem test covers | 435 # the test requires too much time to run. However, the problem test covers |
| (...skipping 439 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 877 ############################################################################## | 875 ############################################################################## |
| 878 ['gcov_coverage', { | 876 ['gcov_coverage', { |
| 879 # Tests taking too long. | 877 # Tests taking too long. |
| 880 'array-functions-prototype-misc': [SKIP], | 878 'array-functions-prototype-misc': [SKIP], |
| 881 | 879 |
| 882 # Stack overflow. | 880 # Stack overflow. |
| 883 'big-array-literal': [SKIP], | 881 'big-array-literal': [SKIP], |
| 884 }], # 'gcov_coverage' | 882 }], # 'gcov_coverage' |
| 885 | 883 |
| 886 ] | 884 ] |
| OLD | NEW |