mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-07 06:14:33 +00:00
do the release tests last because they take longer
This commit is contained in:
parent
786052c7d3
commit
cf4cc9b148
1 changed files with 37 additions and 36 deletions
|
|
@ -40,42 +40,6 @@ const test_targets = [_]TestTarget{
|
||||||
.single_threaded = true,
|
.single_threaded = true,
|
||||||
},
|
},
|
||||||
|
|
||||||
TestTarget{
|
|
||||||
.mode = .ReleaseFast,
|
|
||||||
},
|
|
||||||
TestTarget{
|
|
||||||
.link_libc = true,
|
|
||||||
.mode = .ReleaseFast,
|
|
||||||
},
|
|
||||||
TestTarget{
|
|
||||||
.mode = .ReleaseFast,
|
|
||||||
.single_threaded = true,
|
|
||||||
},
|
|
||||||
|
|
||||||
TestTarget{
|
|
||||||
.mode = .ReleaseSafe,
|
|
||||||
},
|
|
||||||
TestTarget{
|
|
||||||
.link_libc = true,
|
|
||||||
.mode = .ReleaseSafe,
|
|
||||||
},
|
|
||||||
TestTarget{
|
|
||||||
.mode = .ReleaseSafe,
|
|
||||||
.single_threaded = true,
|
|
||||||
},
|
|
||||||
|
|
||||||
TestTarget{
|
|
||||||
.mode = .ReleaseSmall,
|
|
||||||
},
|
|
||||||
TestTarget{
|
|
||||||
.link_libc = true,
|
|
||||||
.mode = .ReleaseSmall,
|
|
||||||
},
|
|
||||||
TestTarget{
|
|
||||||
.mode = .ReleaseSmall,
|
|
||||||
.single_threaded = true,
|
|
||||||
},
|
|
||||||
|
|
||||||
TestTarget{
|
TestTarget{
|
||||||
.target = Target{
|
.target = Target{
|
||||||
.Cross = CrossTarget{
|
.Cross = CrossTarget{
|
||||||
|
|
@ -201,6 +165,43 @@ const test_targets = [_]TestTarget{
|
||||||
// },
|
// },
|
||||||
// .link_libc = true,
|
// .link_libc = true,
|
||||||
//},
|
//},
|
||||||
|
|
||||||
|
// Do the release tests last because they take a long time
|
||||||
|
TestTarget{
|
||||||
|
.mode = .ReleaseFast,
|
||||||
|
},
|
||||||
|
TestTarget{
|
||||||
|
.link_libc = true,
|
||||||
|
.mode = .ReleaseFast,
|
||||||
|
},
|
||||||
|
TestTarget{
|
||||||
|
.mode = .ReleaseFast,
|
||||||
|
.single_threaded = true,
|
||||||
|
},
|
||||||
|
|
||||||
|
TestTarget{
|
||||||
|
.mode = .ReleaseSafe,
|
||||||
|
},
|
||||||
|
TestTarget{
|
||||||
|
.link_libc = true,
|
||||||
|
.mode = .ReleaseSafe,
|
||||||
|
},
|
||||||
|
TestTarget{
|
||||||
|
.mode = .ReleaseSafe,
|
||||||
|
.single_threaded = true,
|
||||||
|
},
|
||||||
|
|
||||||
|
TestTarget{
|
||||||
|
.mode = .ReleaseSmall,
|
||||||
|
},
|
||||||
|
TestTarget{
|
||||||
|
.link_libc = true,
|
||||||
|
.mode = .ReleaseSmall,
|
||||||
|
},
|
||||||
|
TestTarget{
|
||||||
|
.mode = .ReleaseSmall,
|
||||||
|
.single_threaded = true,
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
const max_stdout_size = 1 * 1024 * 1024; // 1 MB
|
const max_stdout_size = 1 * 1024 * 1024; // 1 MB
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue