| author | |
| committer | |
| log | a7251e41914c5b24c27ed2669fce2a802a052c05 |
| tree | d9f0f81dfc0df8d2543ed47f950723f872bb3d4a |
| parent | b866c14328f0779b38f073b2ee3a8a3e437d129c |
| signature |
8 files changed, 8 insertions(+), 8 deletions(-)
ci/riscv64-linux-debug.sh+1-1| ... | ... | @@ -52,4 +52,4 @@ stage3-debug/bin/zig build test-cases test-modules test-unit test-c-abi test-sta |
| 52 | 52 | -Dtarget=native-native-musl \ |
| 53 | 53 | --search-prefix "$PREFIX" \ |
| 54 | 54 | --zig-lib-dir "$PWD/../lib" \ |
| 55 | --test-timeout-ms 60_000 | |
| 55 | --test-timeout-ms 120_000 |
ci/riscv64-linux-release.sh+1-1| ... | ... | @@ -52,4 +52,4 @@ stage3-release/bin/zig build test-cases test-modules test-unit test-c-abi test-s |
| 52 | 52 | -Dtarget=native-native-musl \ |
| 53 | 53 | --search-prefix "$PREFIX" \ |
| 54 | 54 | --zig-lib-dir "$PWD/../lib" \ |
| 55 | --test-timeout-ms 60_000 | |
| 55 | --test-timeout-ms 120_000 |
ci/x86_64-linux-debug-llvm.sh+1-1| ... | ... | @@ -62,4 +62,4 @@ stage3-debug/bin/zig build test docs \ |
| 62 | 62 | --search-prefix "$PREFIX" \ |
| 63 | 63 | --zig-lib-dir "$PWD/../lib" \ |
| 64 | 64 | -Denable-superhtml \ |
| 65 | --test-timeout-ms 60_000 | |
| 65 | --test-timeout-ms 240_000 |
ci/x86_64-linux-debug.sh+1-1| ... | ... | @@ -62,4 +62,4 @@ stage3-debug/bin/zig build test docs \ |
| 62 | 62 | --search-prefix "$PREFIX" \ |
| 63 | 63 | --zig-lib-dir "$PWD/../lib" \ |
| 64 | 64 | -Denable-superhtml \ |
| 65 | --test-timeout-ms 60_000 | |
| 65 | --test-timeout-ms 240_000 |
ci/x86_64-linux-release.sh+1-1| ... | ... | @@ -64,7 +64,7 @@ stage3-release/bin/zig build test docs \ |
| 64 | 64 | --search-prefix "$PREFIX" \ |
| 65 | 65 | --zig-lib-dir "$PWD/../lib" \ |
| 66 | 66 | -Denable-superhtml \ |
| 67 | --test-timeout-ms 60_000 | |
| 67 | --test-timeout-ms 240_000 | |
| 68 | 68 | |
| 69 | 69 | # Ensure that stage3 and stage4 are byte-for-byte identical. |
| 70 | 70 | stage3-release/bin/zig build \ |
ci/x86_64-windows-debug.ps1+1-1| ... | ... | @@ -60,7 +60,7 @@ Write-Output "Main test suite..." |
| 60 | 60 | -Dskip-non-native ` |
| 61 | 61 | -Dskip-release ` |
| 62 | 62 | -Denable-symlinks-windows ` |
| 63 | --test-timeout-ms 60_000 | |
| 63 | --test-timeout-ms 240_000 | |
| 64 | 64 | CheckLastExitCode |
| 65 | 65 | |
| 66 | 66 | Write-Output "Build x86_64-windows-msvc behavior tests using the C backend..." |
ci/x86_64-windows-release.ps1+1-1| ... | ... | @@ -59,7 +59,7 @@ Write-Output "Main test suite..." |
| 59 | 59 | -Dstatic-llvm ` |
| 60 | 60 | -Dskip-non-native ` |
| 61 | 61 | -Denable-symlinks-windows ` |
| 62 | --test-timeout-ms 60_000 | |
| 62 | --test-timeout-ms 240_000 | |
| 63 | 63 | CheckLastExitCode |
| 64 | 64 | |
| 65 | 65 | # Ensure that stage3 and stage4 are byte-for-byte identical. |
lib/std/Build/Step/Run.zig+1-1| ... | ... | @@ -1814,7 +1814,7 @@ fn pollZigTest( |
| 1814 | 1814 | // test. For instance, if the test runner leaves this much time between us requesting a test to |
| 1815 | 1815 | // start and it acknowledging the test starting, we terminate the child and raise an error. This |
| 1816 | 1816 | // *should* never happen, but could in theory be caused by some very unlucky IB in a test. |
| 1817 | const response_timeout_ns = 30 * std.time.ns_per_s; | |
| 1817 | const response_timeout_ns = options.unit_test_timeout_ns orelse 60 * std.time.ns_per_s; | |
| 1818 | 1818 | |
| 1819 | 1819 | const stdout = poller.reader(.stdout); |
| 1820 | 1820 | const stderr = poller.reader(.stderr); |