diff --git a/ci/aarch64-macos-release.sh b/ci/aarch64-macos-release.sh index 9effc15358..22dae5b4a2 100755 --- a/ci/aarch64-macos-release.sh +++ b/ci/aarch64-macos-release.sh @@ -46,7 +46,6 @@ $HOME/local/bin/ninja install stage3-release/bin/zig build test docs \ --zig-lib-dir "$(pwd)/../lib" \ - --skip-oom-steps \ -Denable-macos-sdk \ -Dstatic-llvm \ -Dskip-non-native \ diff --git a/ci/x86_64-windows-debug.ps1 b/ci/x86_64-windows-debug.ps1 index 95b19e06a3..1b98219de3 100644 --- a/ci/x86_64-windows-debug.ps1 +++ b/ci/x86_64-windows-debug.ps1 @@ -57,7 +57,6 @@ Write-Output "Main test suite..." & "stage3-debug\bin\zig.exe" build test docs ` --zig-lib-dir "$ZIG_LIB_DIR" ` --search-prefix "$PREFIX_PATH" ` - --skip-oom-steps ` -Dstatic-llvm ` -Dskip-non-native ` -Denable-symlinks-windows diff --git a/ci/x86_64-windows-release.ps1 b/ci/x86_64-windows-release.ps1 index 87aa3e6dc0..8a3ddafb73 100644 --- a/ci/x86_64-windows-release.ps1 +++ b/ci/x86_64-windows-release.ps1 @@ -57,7 +57,6 @@ Write-Output "Main test suite..." & "stage3-release\bin\zig.exe" build test docs ` --zig-lib-dir "$ZIG_LIB_DIR" ` --search-prefix "$PREFIX_PATH" ` - --skip-oom-steps ` -Dstatic-llvm ` -Dskip-non-native ` -Denable-symlinks-windows diff --git a/test/tests.zig b/test/tests.zig index 71144db036..6f863bae8d 100644 --- a/test/tests.zig +++ b/test/tests.zig @@ -1052,7 +1052,6 @@ pub fn addModuleTests(b: *std.Build, options: ModuleTestOptions) *Step { .link_libc = test_target.link_libc, .target = altered_target, .zig_lib_dir = .{ .path = "lib" }, - .max_rss = if (mem.eql(u8, options.name, "std")) 11199083316 else 0, }); compile_c.addCSourceFile(.{ .file = these_tests.getEmittedBin(),