| ... | @@ -73,6 +73,7 @@ exec_cmd_args: ?[]const ?[]const u8, | ... | @@ -73,6 +73,7 @@ exec_cmd_args: ?[]const ?[]const u8, |
| 73 | filter: ?[]const u8, | 73 | filter: ?[]const u8, |
| 74 | test_evented_io: bool = false, | 74 | test_evented_io: bool = false, |
| 75 | test_runner: ?[]const u8, | 75 | test_runner: ?[]const u8, |
| | 76 | test_server_mode: bool, |
| 76 | code_model: std.builtin.CodeModel = .default, | 77 | code_model: std.builtin.CodeModel = .default, |
| 77 | wasi_exec_model: ?std.builtin.WasiExecModel = null, | 78 | wasi_exec_model: ?std.builtin.WasiExecModel = null, |
| 78 | /// Symbols to be exported when compiling to wasm | 79 | /// Symbols to be exported when compiling to wasm |
| ... | @@ -499,6 +500,7 @@ pub fn create(owner: *std.Build, options: Options) *Compile { | ... | @@ -499,6 +500,7 @@ pub fn create(owner: *std.Build, options: Options) *Compile { |
| 499 | .exec_cmd_args = null, | 500 | .exec_cmd_args = null, |
| 500 | .filter = options.filter, | 501 | .filter = options.filter, |
| 501 | .test_runner = options.test_runner, | 502 | .test_runner = options.test_runner, |
| | 503 | .test_server_mode = options.test_runner == null, |
| 502 | .disable_stack_probing = false, | 504 | .disable_stack_probing = false, |
| 503 | .disable_sanitize_c = false, | 505 | .disable_sanitize_c = false, |
| 504 | .sanitize_thread = false, | 506 | .sanitize_thread = false, |