diff options
Diffstat (limited to 'testsuite/gna/issue803')
-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 |