diff options
author | Dominik Maier <domenukk@gmail.com> | 2020-08-04 21:57:56 +0200 |
---|---|---|
committer | Dominik Maier <domenukk@gmail.com> | 2020-08-04 21:57:56 +0200 |
commit | 79f873a5979a118938c46a74aded85eeaba7db1b (patch) | |
tree | 083f7f8ad2da8a153a99219ddf5667259214aa49 /test/test-compcov.sh | |
parent | 8850e1a5bf8436ccb77e43a91cbcdb4316692036 (diff) | |
download | afl++-79f873a5979a118938c46a74aded85eeaba7db1b.tar.gz |
posix compatible sourcing
Diffstat (limited to 'test/test-compcov.sh')
-rwxr-xr-x | test/test-compcov.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test-compcov.sh b/test/test-compcov.sh index 5becc862..905a4cbc 100755 --- a/test/test-compcov.sh +++ b/test/test-compcov.sh @@ -1,6 +1,6 @@ #!/bin/sh -source ./test-pre.sh +. ./test-pre.sh test -z "$AFL_CC" && unset AFL_CC @@ -48,4 +48,4 @@ test -z "$AFL_CC" && { fi } -source ./test-post.sh +. ./test-post.sh |