| ... | ... | @@ -867,6 +867,7 @@ pub const TestOptions = struct { |
| 867 | 867 | filters: []const []const u8 = &.{}, |
| 868 | 868 | test_runner: ?LazyPath = null, |
| 869 | 869 | link_libc: ?bool = null, |
| 870 | link_libcpp: ?bool = null, |
| 870 | 871 | single_threaded: ?bool = null, |
| 871 | 872 | pic: ?bool = null, |
| 872 | 873 | strip: ?bool = null, |
| ... | ... | @@ -896,6 +897,7 @@ pub fn addTest(b: *Build, options: TestOptions) *Step.Compile { |
| 896 | 897 | .target = options.target orelse b.graph.host, |
| 897 | 898 | .optimize = options.optimize, |
| 898 | 899 | .link_libc = options.link_libc, |
| 900 | .link_libcpp = options.link_libcpp, |
| 899 | 901 | .single_threaded = options.single_threaded, |
| 900 | 902 | .pic = options.pic, |
| 901 | 903 | .strip = options.strip, |