diff options
author | Tristan Gingold <tgingold@free.fr> | 2021-01-26 07:57:24 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2021-01-26 07:57:24 +0100 |
commit | 45dc90330d619d6445d178483a36fef7673b51fe (patch) | |
tree | 816909390f9c5822eda70a724ef8609e7492b716 /testsuite/gna/issue803/testsuite.sh | |
parent | 7135caeea2880d7d1ee96a66bd7941bcc56a4ddb (diff) | |
download | ghdl-45dc90330d619d6445d178483a36fef7673b51fe.tar.gz ghdl-45dc90330d619d6445d178483a36fef7673b51fe.tar.bz2 ghdl-45dc90330d619d6445d178483a36fef7673b51fe.zip |
Avoid codacy warnings in previous commit
Diffstat (limited to 'testsuite/gna/issue803/testsuite.sh')
-rwxr-xr-x | testsuite/gna/issue803/testsuite.sh | 4 |
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 |