-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #92 from Chia-Network/20240522-int-conversion
Fix bug from early ported ocaml code regarding zeroes and program representation. Add a cl23.1 sigil that enables this and add many tests.
- Loading branch information
Showing
15 changed files
with
232 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,4 @@ mod optimize; | |
pub mod run; | ||
mod smoke; | ||
mod stage_2; | ||
mod zero_constant_generation; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
use crate::tests::classic::run::{do_basic_brun, do_basic_run}; | ||
|
||
#[test] | ||
fn test_fuzz_constant_gen() { | ||
let test_program = "(mod X %1 (defconst C %c) (concat C X))"; | ||
|
||
let test_parallel_run = |test| { | ||
let final_program_classic = test_program.replace("%1", "").replace("%c", test); | ||
let final_program_23_1 = test_program | ||
.replace("%1", "(include *standard-cl-23.1*)") | ||
.replace("%c", test); | ||
let classic = do_basic_run(&vec!["run".to_string(), final_program_classic]); | ||
let new_ver = do_basic_run(&vec!["run".to_string(), final_program_23_1]); | ||
let classic_output = do_basic_brun(&vec!["brun".to_string(), classic, "0x01".to_string()]); | ||
let new_output = do_basic_brun(&vec!["brun".to_string(), new_ver, "0x01".to_string()]); | ||
assert_eq!(classic_output, new_output); | ||
}; | ||
|
||
for test in [ | ||
"0x00", | ||
"(concat 0x00 0x00)", | ||
"(concat 0 0x00)", | ||
"(concat 1 0x00)", | ||
"(concat -1 0x00)", | ||
"(concat -129 0x00)", | ||
"(concat 0x00 0)", | ||
"(concat 0x00 1)", | ||
"(concat 0x00 -1)", | ||
"(concat 0x00 -129)", | ||
"(concat 0x00 (sha256 0x00 0))", | ||
"(concat 0x00 (sha256 0 0x00 0))", | ||
] | ||
.iter() | ||
{ | ||
test_parallel_run(test); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.