diff --git a/tooling/nargo_cli/build.rs b/tooling/nargo_cli/build.rs index 0c612ace888..eee10ede8c4 100644 --- a/tooling/nargo_cli/build.rs +++ b/tooling/nargo_cli/build.rs @@ -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, @@ -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#"