-
Notifications
You must be signed in to change notification settings - Fork 983
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'tomas/pregen-masp-proofs' (#1772)
* origin/tomas/pregen-masp-proofs: changelog: add #1768 make: add recipes for integration tests with saved MASP proofs test: add masp_proofs test fixtures shared/masp: allow to save and load proofs for tests
- Loading branch information
Showing
18 changed files
with
190 additions
and
35 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
- Added pre-built MASP proofs for integration tests. | ||
([\#1768](https://github.com/anoma/namada/pull/1768)) |
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 |
---|---|---|
|
@@ -20,6 +20,7 @@ members = [ | |
exclude = [ | ||
"wasm", | ||
"wasm_for_tests", | ||
"test_fixtures", | ||
] | ||
|
||
[workspace.package] | ||
|
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
Binary file added
BIN
+9.42 KB
...fixtures/masp_proofs/0DAF8BDF2318129AC828A7149AC83E76506147445D4DC22D57CBC9869BCDDA80.bin
Binary file not shown.
Binary file added
BIN
+8.99 KB
...fixtures/masp_proofs/12C933751C24BDC39C9108F5AF5D4C1BF345378A4FB6BB0B179BA8BDB0D2A3C0.bin
Binary file not shown.
Binary file added
BIN
+7.27 KB
...fixtures/masp_proofs/1362F1CF9B836CF8B05D8189EA9CB1712CCA85B0E96A3330A63BE7CD9E5ECD22.bin
Binary file not shown.
Binary file added
BIN
+8.99 KB
...fixtures/masp_proofs/5B99F3D7E0CE75AB1F4B737EC88B269A5436CD72AA758686960F409B04841707.bin
Binary file not shown.
Binary file added
BIN
+24.4 KB
...fixtures/masp_proofs/889C046FA76727BC97433503BB79BAC90BA1F01653EBCFDCF7CC8AAA1BBEE462.bin
Binary file not shown.
Binary file added
BIN
+7.27 KB
...fixtures/masp_proofs/8B29BC2E1A96DF331C7C3A2B227C98D1E5AAAA9988F26B1A47090ACCE693572F.bin
Binary file not shown.
Binary file added
BIN
+9.42 KB
...fixtures/masp_proofs/A9FA2730222946FA51E9D587544FDED28D5E7D3C6B52DCF38A5978CEA70D6FD3.bin
Binary file not shown.
Binary file added
BIN
+16.6 KB
...fixtures/masp_proofs/AC308C08512AF5DAA364B845D146763B3CE0BACFB7799C6744E50B9E7F43E961.bin
Binary file not shown.
Binary file added
BIN
+19.5 KB
...fixtures/masp_proofs/BE57BA4D8FB068F5A933E78DEF2989556FD771D368849D034E22923FD350EEEC.bin
Binary file not shown.
Binary file added
BIN
+18.4 KB
...fixtures/masp_proofs/E76E54B7526CD2B5423322FB711C0CA6AA6520A2AC8BC34A84358EA137F138D0.bin
Binary file not shown.
Binary file added
BIN
+7.27 KB
...fixtures/masp_proofs/EE7C912B7E21F07494D58AA6668DC6BBB31619C7E93A1A5A2E64B694DBE1BD6E.bin
Binary file not shown.
Binary file added
BIN
+7.27 KB
...fixtures/masp_proofs/F068FDF05B8F25DD923E667215344FFFAA6CA273027CD480AEA68DDED57D88CA.bin
Binary file not shown.
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,11 @@ | ||
# MASP proofs for tests | ||
|
||
This directory contains pre-built MASP transaction proofs used to speed-up integration tests. | ||
|
||
```shell | ||
# Run the tests with the saved proofs from here. | ||
make test-integration | ||
|
||
# Delete old proofs, run the tests and save the new proofs. | ||
make test-integration-save-proofs | ||
``` |