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-all.sh | |
parent | 8850e1a5bf8436ccb77e43a91cbcdb4316692036 (diff) | |
download | afl++-79f873a5979a118938c46a74aded85eeaba7db1b.tar.gz |
posix compatible sourcing
Diffstat (limited to 'test/test-all.sh')
-rwxr-xr-x | test/test-all.sh | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/test/test-all.sh b/test/test-all.sh index 53251979..7175493b 100755 --- a/test/test-all.sh +++ b/test/test-all.sh @@ -1,23 +1,23 @@ #!/bin/sh -source ./test-pre.sh +. ./test-pre.sh -source ./test-basic.sh +. ./test-basic.sh -source ./test-llvm.sh +. ./test-llvm.sh -source ./test-llvm-lto.sh +. ./test-llvm-lto.sh -source ./test-gcc-plugin.sh +. ./test-gcc-plugin.sh -source ./test-compcov.sh +. ./test-compcov.sh -source ./test-qemu-mode.sh +. ./test-qemu-mode.sh -source ./test-unicorn-mode.sh +. ./test-unicorn-mode.sh -source ./test-custom-mutators.sh +. ./test-custom-mutators.sh -source ./test-unittests.sh +. ./test-unittests.sh -source ./test-post.sh +. ./test-post.sh |