mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 06:13:07 +00:00
re-enable asm-and-link tests
These already looked pretty good. I deleted two unnecessary calls to expectStdErrEqual.
This commit is contained in:
parent
8b871ae275
commit
263aaf0e66
@ -464,7 +464,7 @@ pub fn build(b: *std.Build) !void {
|
|||||||
//test_step.dependOn(tests.addLinkTests(b, test_filter, optimization_modes, enable_macos_sdk, skip_stage2_tests, enable_symlinks_windows));
|
//test_step.dependOn(tests.addLinkTests(b, test_filter, optimization_modes, enable_macos_sdk, skip_stage2_tests, enable_symlinks_windows));
|
||||||
test_step.dependOn(tests.addStackTraceTests(b, test_filter, optimization_modes));
|
test_step.dependOn(tests.addStackTraceTests(b, test_filter, optimization_modes));
|
||||||
test_step.dependOn(tests.addCliTests(b, test_filter, optimization_modes));
|
test_step.dependOn(tests.addCliTests(b, test_filter, optimization_modes));
|
||||||
//test_step.dependOn(tests.addAssembleAndLinkTests(b, test_filter, optimization_modes));
|
test_step.dependOn(tests.addAssembleAndLinkTests(b, test_filter, optimization_modes));
|
||||||
test_step.dependOn(tests.addTranslateCTests(b, test_filter));
|
test_step.dependOn(tests.addTranslateCTests(b, test_filter));
|
||||||
if (!skip_run_translated_c) {
|
if (!skip_run_translated_c) {
|
||||||
test_step.dependOn(tests.addRunTranslatedCTests(b, test_filter, target));
|
test_step.dependOn(tests.addRunTranslatedCTests(b, test_filter, target));
|
||||||
|
|||||||
@ -104,7 +104,6 @@ pub fn addCase(self: *CompareOutput, case: TestCase) void {
|
|||||||
const run = exe.run();
|
const run = exe.run();
|
||||||
run.setName(annotated_case_name);
|
run.setName(annotated_case_name);
|
||||||
run.addArgs(case.cli_args);
|
run.addArgs(case.cli_args);
|
||||||
run.expectStdErrEqual("");
|
|
||||||
run.expectStdOutEqual(case.expected_output);
|
run.expectStdOutEqual(case.expected_output);
|
||||||
|
|
||||||
self.step.dependOn(&run.step);
|
self.step.dependOn(&run.step);
|
||||||
@ -132,7 +131,6 @@ pub fn addCase(self: *CompareOutput, case: TestCase) void {
|
|||||||
const run = exe.run();
|
const run = exe.run();
|
||||||
run.setName(annotated_case_name);
|
run.setName(annotated_case_name);
|
||||||
run.addArgs(case.cli_args);
|
run.addArgs(case.cli_args);
|
||||||
run.expectStdErrEqual("");
|
|
||||||
run.expectStdOutEqual(case.expected_output);
|
run.expectStdOutEqual(case.expected_output);
|
||||||
|
|
||||||
self.step.dependOn(&run.step);
|
self.step.dependOn(&run.step);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user