Promote standalone test cases to packages

This is a prerequisite for removing `b.anonymousDependency()`, but
having compiler tests dogfood package management might be a good idea
in general.
This commit is contained in:
Carl Åstholm
2024-01-16 17:54:57 +01:00
committed by Andrew Kelley
parent 05126fc4c5
commit 3ed221f149
6 changed files with 227 additions and 232 deletions

12
build.zig.zon Normal file
View File

@@ -0,0 +1,12 @@
// The Zig compiler is not intended to be consumed as a package.
// The sole purpose of this manifest file is to test the compiler.
.{
.name = "zig",
.version = "0.0.0",
.dependencies = .{
.standalone_test_cases = .{
.path = "test/standalone",
},
},
.paths = .{""},
}