Skip to content

Commit

Permalink
new tests bypass to msvc_x64
Browse files Browse the repository at this point in the history
  • Loading branch information
kassane committed Jun 20, 2023
1 parent 9159112 commit 1403dad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,15 @@ pub fn build(b: *std.Build) void {
// .lib = lib,
// .path = "test/constexprs/WG21_P1886.cpp",
// });
if (!target.isDarwin()) buildTest(b, .{
if (!target.isDarwin() and target.getAbi() != .msvc) buildTest(b, .{
.lib = lib,
.path = "test/constexprs/max_result_get_value.cpp",
});
buildTest(b, .{
.lib = lib,
.path = "test/constexprs/min_result_get_value.cpp",
});
if (!target.isDarwin()) buildTest(b, .{
if (!target.isDarwin() and target.getAbi() != .msvc) buildTest(b, .{
.lib = lib,
.path = "test/constexprs/max_result_construct_value_move_destruct.cpp",
});
Expand Down

0 comments on commit 1403dad

Please sign in to comment.