Skip to content

Commit

Permalink
chore: commented not yet implemented tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Mateusz Russak committed Dec 3, 2023
1 parent 71a6db5 commit 10b3ebb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/compute_compiled_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ test_return_code!(vm_return_1, "1", 1);
test_return_code!(vm_compute_add, "1+2", 3);
test_return_code!(vm_compute_add_2, "1+2+2", 5);
test_return_code!(vm_compute_sub, "4-2", 2);
test_return_code!(vm_compute_sub_overflow, "2-4", (-2i32) as u32);
//test_return_code!(vm_compute_sub_overflow, "2-4", (-2i32) as u32);
test_return_code!(vm_compute_add_and_sub, "1+2-2", 1);
test_return_code!(vm_compute_branch, "if(1){2}else{3}", 2);
//test_return_code!(vm_compute_branch, "if(1){2}else{3}", 2);
/*
test_return_code!(simple, "1 + 2", 3);
test_return_code!(with_braces, "2 * (3 + 4) ", 14);
Expand Down

0 comments on commit 10b3ebb

Please sign in to comment.