constrain target/backend of new test cases
avoids testing stuff that doesn't work yet.
3 files changed, 3 insertions(+), 3 deletions(-)
test/cases/compile_errors/endless_loop_in_function_evaluation.zig+1-1
| ... | ... | @@ -7,7 +7,7 @@ export fn entry() usize { return @sizeOf(@TypeOf(&seventh_fib_number)); } |
| 7 | 7 | |
| 8 | 8 | // error |
| 9 | 9 | // backend=stage2 |
| 10 | | // target=native |
| 10 | // target=x86_64-linux |
| 11 | 11 | // |
| 12 | 12 | // :3:21: error: evaluation exceeded 1000 backwards branches |
| 13 | 13 | // :3:21: note: use @setEvalBranchQuota() to raise the branch limit from 1000 |
test/cases/compile_errors/function_ptr_alignment.zig+1-1
| ... | ... | @@ -19,7 +19,7 @@ comptime { |
| 19 | 19 | |
| 20 | 20 | // error |
| 21 | 21 | // backend=stage2 |
| 22 | | // target=native |
| 22 | // target=x86_64-linux |
| 23 | 23 | // |
| 24 | 24 | // :2:19: error: function pointer alignment disagrees with function alignment |
| 25 | 25 | // :16:19: error: function pointer alignment disagrees with function alignment |
test/cases/compile_errors/implicit_cast_from_array_to_mutable_slice.zig+1-1
| ... | ... | @@ -5,7 +5,7 @@ export fn entry() void { |
| 5 | 5 | } |
| 6 | 6 | |
| 7 | 7 | // error |
| 8 | | // backend=stage2 |
| 8 | // backend=llvm |
| 9 | 9 | // target=native |
| 10 | 10 | // |
| 11 | 11 | // :4:9: error: array literal requires address-of operator (&) to coerce to slice type '[]i32' |