about summary refs log tree commit diff
path: root/test/test-all.sh
diff options
context:
space:
mode:
authorDominik Maier <domenukk@gmail.com>2020-08-04 21:57:56 +0200
committerDominik Maier <domenukk@gmail.com>2020-08-04 21:57:56 +0200
commit79f873a5979a118938c46a74aded85eeaba7db1b (patch)
tree083f7f8ad2da8a153a99219ddf5667259214aa49 /test/test-all.sh
parent8850e1a5bf8436ccb77e43a91cbcdb4316692036 (diff)
downloadafl++-79f873a5979a118938c46a74aded85eeaba7db1b.tar.gz
posix compatible sourcing
Diffstat (limited to 'test/test-all.sh')
-rwxr-xr-xtest/test-all.sh22
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