diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2024-07-20 17:32:11 +0300 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2024-07-20 17:32:11 +0300 |
commit | 87a7e7b99daeca3108d873118b4446556162a24a (patch) | |
tree | 1cba665de03da0f5ee0ebb28ba45377b0082787b /src | |
parent | 1568fa2be103bd26b643133b1f68ae0dd7974134 (diff) | |
download | arching-kaos-tools-87a7e7b99daeca3108d873118b4446556162a24a.tar.gz arching-kaos-tools-87a7e7b99daeca3108d873118b4446556162a24a.tar.bz2 arching-kaos-tools-87a7e7b99daeca3108d873118b4446556162a24a.zip |
Removing test binaries after tests done
Diffstat (limited to 'src')
-rwxr-xr-x | src/build.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/build.sh b/src/build.sh index 2c20c8e..440bca6 100755 --- a/src/build.sh +++ b/src/build.sh @@ -10,7 +10,10 @@ echo "Building tests/test_akfs" && \ gcc -Wextra -Wall -Werror -pedantic -ggdb -Wl,-rpath=lib -I./include tests/test_akfs.c lib/akfs.so -o tests/test_akfs && \ echo "Running test_akfs" && \ time ./tests/test_akfs +rm ./tests/test_akfs + echo "Building tests/test_akfs_mkdir.c" && \ gcc -Wextra -Wall -Werror -pedantic -ggdb -Wl,-rpath=lib -I./include tests/test_akfs_mkdir.c lib/akfs.so -o tests/test_akfs_mkdir && \ echo "Running test_akfs_mkdir" && \ time ./tests/test_akfs_mkdir +rm ./tests/test_akfs_mkdir |