Skip to content

Commit

Permalink
Don't build tests with GCC on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
marco-c committed Nov 6, 2017
1 parent 0f14f8f commit faef481
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions tests/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -195,12 +195,14 @@ fn test_integration() {

make_clean(path);

println!("GCC");
make(path, "g++");
run(path);
check_equal_ade(&read_expected(path, "gcc", "ade"), &run_grcov(path, false, "ade"));
check_equal_coveralls(&read_expected(path, "gcc", "coveralls"), &run_grcov(path, false, "coveralls"), skip_branches);
make_clean(path);
if !cfg!(windows) {
println!("GCC");
make(path, "g++");
run(path);
check_equal_ade(&read_expected(path, "gcc", "ade"), &run_grcov(path, false, "ade"));
check_equal_coveralls(&read_expected(path, "gcc", "coveralls"), &run_grcov(path, false, "coveralls"), skip_branches);
make_clean(path);
}

// On CI, don't test llvm, as there are problems for now.
let skip_llvm = env::var("CONTINUOUS_INTEGRATION").is_ok();
Expand Down

0 comments on commit faef481

Please sign in to comment.