Skip to content

Commit

Permalink
Disable inliner aggressiveness until fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
aakoshh committed Nov 5, 2024
1 parent cd88860 commit a45e93e
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions tooling/nargo_cli/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ struct MatrixConfig {

/// Generate all test cases for a given test directory.
/// These will be executed serially, but independently from other test directories.
/// Be careful not to run multiple tests on the same directory concurrently because
/// they can override each others' compilation artifact files.
/// Running multiple tests on the same directory concurrently risks overriding each
/// others compilation artifacts.
fn generate_test_cases(
test_file: &mut File,
test_name: &str,
Expand All @@ -110,7 +110,9 @@ fn generate_test_cases(
) {
let mutex_name = format! {"TEST_MUTEX_{}", test_name.to_uppercase()};
let brillig_cases = if matrix_config.vary_brillig { "[false, true]" } else { "[false]" };
let inliner_cases = if matrix_config.vary_inliner { "[i64::MIN, 0, i64::MAX]" } else { "[0]" };
let _inliner_cases = if matrix_config.vary_inliner { "[i64::MIN, 0, i64::MAX]" } else { "[0]" };
// TODO (#6429): Remove this once the failing tests are fixed.
let inliner_cases = "[i64::MAX]";
write!(
test_file,
r#"
Expand Down

0 comments on commit a45e93e

Please sign in to comment.