zig/test/c_import.zig
Jacob Young 2291560424 c_import: extract behavior tests that use @cImport
This introduces the new test step `test-c-import`, and removes the
ability of the behavior tests to `@cImport` paths relative to `test`.
This allows the behavior tests to be run without translate c.
2024-02-20 18:44:43 +01:00

5 lines
100 B
Zig

test {
_ = @import("c_import/c_char_signedness.zig");
_ = @import("c_import/macros.zig");
}