Skip to content

Commit

Permalink
remove noise
Browse files Browse the repository at this point in the history
  • Loading branch information
scovich committed Nov 7, 2024
1 parent e418365 commit b577419
Showing 1 changed file with 11 additions and 12 deletions.
23 changes: 11 additions & 12 deletions tests/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -331,18 +331,6 @@ fn test_file(name: &'static str, filename: &'static str) {
// Run tests in deduplication priority order. C++ compatibility tests are run first,
// otherwise we would lose the C++ compiler run if they were deduplicated.
let mut cbindgen_outputs = HashSet::new();

run_compile_test(
name,
test,
tmp_dir,
Language::Cxx,
/* cpp_compat = */ false,
None,
&mut HashSet::new(),
false,
);

for cpp_compat in &[true, false] {
for style in &[Style::Type, Style::Tag, Style::Both] {
run_compile_test(
Expand All @@ -358,6 +346,17 @@ fn test_file(name: &'static str, filename: &'static str) {
}
}

run_compile_test(
name,
test,
tmp_dir,
Language::Cxx,
/* cpp_compat = */ false,
None,
&mut HashSet::new(),
false,
);

// `Style::Both` should be identical to `Style::Tag` for Cython.
let mut cbindgen_outputs = HashSet::new();
for style in &[Style::Type, Style::Tag] {
Expand Down

0 comments on commit b577419

Please sign in to comment.