forked from Chia-Network/clvm
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
20221020 clvm rs exceptions (Chia-Network#127)
* Adapt raise tests to reflect the requested raise changes that were made in clvm_rs and now here. Throwing a single atom as one argument causes that argument to be thrown individually. Some people who write chialisp use ad-hoc tools and this is easier to parse. * Adapt raise tests to reflect the requested raise changes that were made in clvm_rs and now here. Throwing a single atom as one argument causes that argument to be thrown individually. Some people who write chialisp use ad-hoc tools and this is easier to parse. * Use the default backend in these tests so the whole suite can vary between python and rust
- Loading branch information
1 parent
1a794c4
commit 480b328
Showing
7 changed files
with
13 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
brun -c '(x (q . 2000))' | ||
FAIL: clvm raise (2000) | ||
FAIL: clvm raise 2000 |
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
brun -c '(x (q . 2000))' | ||
FAIL: clvm raise (2000) | ||
FAIL: clvm raise 2000 |
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,2 @@ | ||
brun '(x (q 99 101))' | ||
FAIL: clvm raise ((99 101)) |
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,2 @@ | ||
brun '(x (q . 99) (q . 101))' | ||
FAIL: clvm raise (99 101) |
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,2 @@ | ||
brun '(x (q . 99))' | ||
FAIL: clvm raise 99 |
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
brun -n '(x (q . 1))' | ||
FAIL: clvm raise (1) | ||
FAIL: clvm raise 1 |