mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
test: use source and build paths in T480-hex-escaping.sh
Make a distinction between source and build directories.
This commit is contained in:
parent
1ab72b13cd
commit
3c23780396
1 changed files with 2 additions and 2 deletions
|
@ -3,7 +3,7 @@ test_description="hex encoding and decoding"
|
|||
. $(dirname "$0")/test-lib.sh || exit 1
|
||||
|
||||
test_begin_subtest "round trip"
|
||||
find $TEST_DIRECTORY/corpora/default -type f -print | sort | xargs cat > EXPECTED
|
||||
find $NOTMUCH_SRCDIR/test/corpora/default -type f -print | sort | xargs cat > EXPECTED
|
||||
$TEST_DIRECTORY/hex-xcode --direction=encode < EXPECTED | $TEST_DIRECTORY/hex-xcode --direction=decode > OUTPUT
|
||||
test_expect_equal_file EXPECTED OUTPUT
|
||||
|
||||
|
@ -25,7 +25,7 @@ $TEST_DIRECTORY/hex-xcode --direction=decode < EXPECTED.$test_count |\
|
|||
test_expect_equal_file EXPECTED.$test_count OUTPUT.$test_count
|
||||
|
||||
test_begin_subtest "round trip (in-place)"
|
||||
find $TEST_DIRECTORY/corpora/default -type f -print | sort | xargs cat > EXPECTED
|
||||
find $NOTMUCH_SRCDIR/test/corpora/default -type f -print | sort | xargs cat > EXPECTED
|
||||
$TEST_DIRECTORY/hex-xcode --in-place --direction=encode < EXPECTED |\
|
||||
$TEST_DIRECTORY/hex-xcode --in-place --direction=decode > OUTPUT
|
||||
test_expect_equal_file EXPECTED OUTPUT
|
||||
|
|
Loading…
Reference in a new issue