diff options
Diffstat (limited to 'tests/projects/zig/c_interop/test.lua')
| -rw-r--r-- | tests/projects/zig/c_interop/test.lua | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/projects/zig/c_interop/test.lua b/tests/projects/zig/c_interop/test.lua new file mode 100644 index 000000000..62ed37e4d --- /dev/null +++ b/tests/projects/zig/c_interop/test.lua @@ -0,0 +1,10 @@ +import("lib.detect.find_tool") + +function test_build(t) + local zig = find_tool("zig") + if zig then + t:build() + else + return t:skip("zig not found") + end +end |
