test: add x86_64-windows-cbe target to incremental cases
Throw another target in there just to spice things up a little!
Running the incremental cases with the C backend is pretty slow due to
the need to recompile the whole output from scratch on every update; for
this reason, we probably don't want to keep many of these targeting CBE
long-term. However, for now, while we have relatively few tests and
things are still changing quite a lot, it's better to have this little
bit of extra test coverage.
9 files changed, 9 insertions(+), 0 deletions(-)
test
incremental
test/incremental/add_decl+1
| ... | @@ -1,5 +1,6 @@ | ... | @@ -1,5 +1,6 @@ |
| 1 | #target=x86_64-linux-selfhosted | 1 | #target=x86_64-linux-selfhosted |
| 2 | #target=x86_64-linux-cbe | 2 | #target=x86_64-linux-cbe |
| | 3 | #target=x86_64-windows-cbe |
| 3 | #update=initial version | 4 | #update=initial version |
| 4 | #file=main.zig | 5 | #file=main.zig |
| 5 | const std = @import("std"); | 6 | const std = @import("std"); |
test/incremental/add_decl_namespaced+1
| ... | @@ -1,5 +1,6 @@ | ... | @@ -1,5 +1,6 @@ |
| 1 | #target=x86_64-linux-selfhosted | 1 | #target=x86_64-linux-selfhosted |
| 2 | #target=x86_64-linux-cbe | 2 | #target=x86_64-linux-cbe |
| | 3 | #target=x86_64-windows-cbe |
| 3 | #update=initial version | 4 | #update=initial version |
| 4 | #file=main.zig | 5 | #file=main.zig |
| 5 | const std = @import("std"); | 6 | const std = @import("std"); |
test/incremental/delete_comptime_decls+1
| ... | @@ -1,5 +1,6 @@ | ... | @@ -1,5 +1,6 @@ |
| 1 | #target=x86_64-linux-selfhosted | 1 | #target=x86_64-linux-selfhosted |
| 2 | #target=x86_64-linux-cbe | 2 | #target=x86_64-linux-cbe |
| | 3 | #target=x86_64-windows-cbe |
| 3 | #update=initial version | 4 | #update=initial version |
| 4 | #file=main.zig | 5 | #file=main.zig |
| 5 | pub fn main() void {} | 6 | pub fn main() void {} |
test/incremental/hello+1
| ... | @@ -1,5 +1,6 @@ | ... | @@ -1,5 +1,6 @@ |
| 1 | #target=x86_64-linux-selfhosted | 1 | #target=x86_64-linux-selfhosted |
| 2 | #target=x86_64-linux-cbe | 2 | #target=x86_64-linux-cbe |
| | 3 | #target=x86_64-windows-cbe |
| 3 | #update=initial version | 4 | #update=initial version |
| 4 | #file=main.zig | 5 | #file=main.zig |
| 5 | const std = @import("std"); | 6 | const std = @import("std"); |
test/incremental/modify_inline_fn+1
| ... | @@ -1,5 +1,6 @@ | ... | @@ -1,5 +1,6 @@ |
| 1 | #target=x86_64-linux-selfhosted | 1 | #target=x86_64-linux-selfhosted |
| 2 | #target=x86_64-linux-cbe | 2 | #target=x86_64-linux-cbe |
| | 3 | #target=x86_64-windows-cbe |
| 3 | #update=initial version | 4 | #update=initial version |
| 4 | #file=main.zig | 5 | #file=main.zig |
| 5 | const std = @import("std"); | 6 | const std = @import("std"); |
test/incremental/move_src+1
| ... | @@ -1,5 +1,6 @@ | ... | @@ -1,5 +1,6 @@ |
| 1 | #target=x86_64-linux-selfhosted | 1 | #target=x86_64-linux-selfhosted |
| 2 | #target=x86_64-linux-cbe | 2 | #target=x86_64-linux-cbe |
| | 3 | #target=x86_64-windows-cbe |
| 3 | #update=initial version | 4 | #update=initial version |
| 4 | #file=main.zig | 5 | #file=main.zig |
| 5 | const std = @import("std"); | 6 | const std = @import("std"); |
test/incremental/remove_enum_field+1
| ... | @@ -1,5 +1,6 @@ | ... | @@ -1,5 +1,6 @@ |
| 1 | #target=x86_64-linux-selfhosted | 1 | #target=x86_64-linux-selfhosted |
| 2 | #target=x86_64-linux-cbe | 2 | #target=x86_64-linux-cbe |
| | 3 | #target=x86_64-windows-cbe |
| 3 | #update=initial version | 4 | #update=initial version |
| 4 | #file=main.zig | 5 | #file=main.zig |
| 5 | const MyEnum = enum(u8) { | 6 | const MyEnum = enum(u8) { |
test/incremental/type_becomes_comptime_only+1
| ... | @@ -1,5 +1,6 @@ | ... | @@ -1,5 +1,6 @@ |
| 1 | #target=x86_64-linux-selfhosted | 1 | #target=x86_64-linux-selfhosted |
| 2 | #target=x86_64-linux-cbe | 2 | #target=x86_64-linux-cbe |
| | 3 | #target=x86_64-windows-cbe |
| 3 | #update=initial version | 4 | #update=initial version |
| 4 | #file=main.zig | 5 | #file=main.zig |
| 5 | const SomeType = u32; | 6 | const SomeType = u32; |
test/incremental/unreferenced_error+1
| ... | @@ -1,5 +1,6 @@ | ... | @@ -1,5 +1,6 @@ |
| 1 | #target=x86_64-linux-selfhosted | 1 | #target=x86_64-linux-selfhosted |
| 2 | #target=x86_64-linux-cbe | 2 | #target=x86_64-linux-cbe |
| | 3 | #target=x86_64-windows-cbe |
| 3 | #update=initial version | 4 | #update=initial version |
| 4 | #file=main.zig | 5 | #file=main.zig |
| 5 | const std = @import("std"); | 6 | const std = @import("std"); |