Skip to content

Commit

Permalink
change set_hint() test to avoid opt
Browse files Browse the repository at this point in the history
  • Loading branch information
gzanitti committed Nov 20, 2024
1 parent 906a75b commit af1f679
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions pipeline/tests/asm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -785,11 +785,11 @@ fn types_in_expressions() {
assert_eq!(output, expected);
}

// #[test]
// fn set_hint() {
// let f = "asm/set_hint.asm";
// regular_test(f, Default::default());
// }
#[test]
fn set_hint() {
let f = "asm/set_hint.asm";
regular_test(f, Default::default());
}

#[test]
fn expand_fixed_jit() {
Expand Down
2 changes: 1 addition & 1 deletion test_data/asm/set_hint.asm
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ let new_col_with_hint: -> expr = constr || {
machine Main with degree: 4 {
let x;
let w = new_col_with_hint();
x = w;
x = w + 1;
}

0 comments on commit af1f679

Please sign in to comment.