Commit 89d4ac6289

jimying <yingqw.js@gmail.com>
2023-12-04 09:07:21
Fix minor error: std.ChildProcess.exec() already rename to run()
1 parent a30147c
Changed files (1)
test
test/src/Cases.zig
@@ -1797,7 +1797,7 @@ fn runOneCase(
                     try comp.makeBinFileExecutable();
 
                     while (true) {
-                        break :x std.ChildProcess.exec(.{
+                        break :x std.ChildProcess.run(.{
                             .allocator = allocator,
                             .argv = argv.items,
                             .cwd_dir = tmp.dir,