don't install conformance tests

This commit is contained in:
Mitchell Hashimoto
2022-07-26 09:55:37 -07:00
parent 28acd99d7d
commit c09498318a

View File

@ -123,12 +123,10 @@ fn conformanceSteps(
entry.name,
});
// Executable builder. We install all conformance tests so that
// `zig build` verifies they work.
// Executable builder.
const c_exe = b.addExecutable(name, path);
c_exe.setTarget(target);
c_exe.setBuildMode(mode);
c_exe.install();
// Store the mapping
try map.put(name, c_exe);