Commit 9be3575
committed
split tests into
This uses the tool described in
RustCrypto/traits#2019 and this script:
```
find -name '*.blb' ! -path "./mgm/tests/data/*" -exec ./split-blobby {} \; -delete
```
and a sed script to split most of the tests:
```
for p in $(rg -l aead::new_test); do
sed -i '/aead::new_test!/ {
h;
s/new_test!/new_pass_test!/;
s/,/_pass,/;
s/",/_pass",/;
p;
g;
s/new_test!/new_fail_test!/;
s/,/_fail,/;
s/",/_fail",/
}' $p;
done
```new_pass_test and new_fail_test
1 parent b396ec4 commit 9be3575
File tree
177 files changed
+158
-71
lines changed- aes-gcm-siv/tests
- data
- aes-gcm/tests
- data
- aes-siv/tests
- data
- ascon-aead128/tests
- data
- ccm/tests
- data
- chacha20poly1305/tests
- data
- eax/tests
- data
- ocb3/tests
- data
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
177 files changed
+158
-71
lines changedSome generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
19 | 19 | | |
20 | 20 | | |
21 | 21 | | |
| 22 | + | |
22 | 23 | | |
23 | 24 | | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
185 | 185 | | |
186 | 186 | | |
187 | 187 | | |
188 | | - | |
| 188 | + | |
| 189 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
185 | 185 | | |
186 | 186 | | |
187 | 187 | | |
188 | | - | |
| 188 | + | |
| 189 | + | |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
0 commit comments