projects
/
overonion
/ blame_incremental
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
blame
(non-incremental) |
history
|
HEAD
Fold reverse into overonion
[overonion]
/
overonion_test
This page requires JavaScript to run. Use
this page
instead.
0 / 11 ( 0%)
Commit
Line
Data
1
#!/bin/bash
2
3
set -e
4
5
d=$(mktemp -d)
6
test_data=$0
7
8
./overonion-make-key --make_INSECURE_key "$d/key"
9
cmp --verbose <(./overonion e "$d/key" < "$test_data" | ./overonion d "$d/key") "$test_data"
10
rm -r "$d"
11
echo PASS