aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2021-01-26 07:57:24 +0100
committerTristan Gingold <tgingold@free.fr>2021-01-26 07:57:24 +0100
commit45dc90330d619d6445d178483a36fef7673b51fe (patch)
tree816909390f9c5822eda70a724ef8609e7492b716 /testsuite/gna
parent7135caeea2880d7d1ee96a66bd7941bcc56a4ddb (diff)
downloadghdl-45dc90330d619d6445d178483a36fef7673b51fe.tar.gz
ghdl-45dc90330d619d6445d178483a36fef7673b51fe.tar.bz2
ghdl-45dc90330d619d6445d178483a36fef7673b51fe.zip
Avoid codacy warnings in previous commit
Diffstat (limited to 'testsuite/gna')
-rwxr-xr-xtestsuite/gna/issue803/testsuite.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/gna/issue803/testsuite.sh b/testsuite/gna/issue803/testsuite.sh
index 018511ed9..3e36b8265 100755
--- a/testsuite/gna/issue803/testsuite.sh
+++ b/testsuite/gna/issue803/testsuite.sh
@@ -17,13 +17,13 @@ if [ "$OS" = "Windows_NT" ]; then
analyze tb.vhdl
$GHDL -e -Wl,-shared -Wl,-Wl,-u,ghdl_main -o tb.dll tb
./main
- rm main.exe tb.dll *.o
+ rm main.exe tb.dll ./*.o
elif [ "$(uname -o)" = "Darwin" ]; then
gcc main-mac.c -o main
analyze tb.vhdl
$GHDL -e -Wl,-shared -Wl,-Wl,-u,_ghdl_main -o tb.dylib tb
./main
- rm main tb.dylib *.o
+ rm main tb.dylib ./*.o
else
echo "This test is disabled on Linux (requires an -fpic libgrt)"
exit 0