Merge pull request #1091 from vancluever/vancluever-conformance-tests-stable-strings

build: use dedicated strings for conformance test keys
This commit is contained in:
Mitchell Hashimoto
2023-12-15 12:43:24 -08:00
committed by GitHub

View File

@ -929,7 +929,7 @@ fn conformanceSteps(
if (index == 0) continue;
// Name of the conformance app and full path to the entrypoint.
const name = entry.name[0..index];
const name = try b.allocator.dupe(u8, entry.name[0..index]);
const path = try fs.path.join(b.allocator, &[_][]const u8{
c_dir_path,
entry.name,