mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-14 15:56:13 +03:00
Merge pull request #1091 from vancluever/vancluever-conformance-tests-stable-strings
build: use dedicated strings for conformance test keys
This commit is contained in:
@ -929,7 +929,7 @@ fn conformanceSteps(
|
|||||||
if (index == 0) continue;
|
if (index == 0) continue;
|
||||||
|
|
||||||
// Name of the conformance app and full path to the entrypoint.
|
// 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{
|
const path = try fs.path.join(b.allocator, &[_][]const u8{
|
||||||
c_dir_path,
|
c_dir_path,
|
||||||
entry.name,
|
entry.name,
|
||||||
|
Reference in New Issue
Block a user