| ... | ... | @@ -1132,6 +1132,7 @@ pub const LibExeObjStep = struct { |
| 1132 | 1132 | name_prefix: []const u8, |
| 1133 | 1133 | filter: ?[]const u8, |
| 1134 | 1134 | single_threaded: bool, |
| 1135 | test_evented_io: bool = false, |
| 1135 | 1136 | code_model: builtin.CodeModel = .default, |
| 1136 | 1137 | |
| 1137 | 1138 | root_src: ?FileSource, |
| ... | ... | @@ -1864,6 +1865,10 @@ pub const LibExeObjStep = struct { |
| 1864 | 1865 | try zig_args.append(filter); |
| 1865 | 1866 | } |
| 1866 | 1867 | |
| 1868 | if (self.test_evented_io) { |
| 1869 | try zig_args.append("--test-evented-io"); |
| 1870 | } |
| 1871 | |
| 1867 | 1872 | if (self.name_prefix.len != 0) { |
| 1868 | 1873 | try zig_args.append("--test-name-prefix"); |
| 1869 | 1874 | try zig_args.append(self.name_prefix); |