-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7cff0c1
commit ab320c0
Showing
10 changed files
with
1,178 additions
and
0 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 @@ | ||
test-results/ | ||
trash directory.* |
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,16 @@ | ||
# This file should be sourced by all test-scripts | ||
# | ||
# This scripts sets the following: | ||
# $B2RSUM Full path to b2rsum script to test | ||
# $TEST_HOME This folder | ||
|
||
# We must be called from tests/ !! | ||
TEST_HOME="$(pwd)" | ||
|
||
. ./sharness.sh | ||
|
||
B2RSUM="$TEST_HOME/../src/b2rsum.bash" | ||
if [[ ! -e "$B2RSUM" ]]; then | ||
echo "Could not find b2rsum.bash" | ||
exit 1 | ||
fi |
Oops, something went wrong.