aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/bug097/testsuite.sh
diff options
context:
space:
mode:
authorLukas Vik <2767848-LukasVik@users.noreply.gitlab.com>2020-11-17 11:26:54 +0100
committertgingold <tgingold@users.noreply.github.com>2020-11-21 08:35:18 +0100
commit277ca7463070d1250a3168ce01762149bd0fb445 (patch)
treec47cf21e2aafffe68a2d10eeed5c7d68ee762c5b /testsuite/gna/bug097/testsuite.sh
parent59113550786db33cde37db76c916b9fbdd88e009 (diff)
downloadghdl-277ca7463070d1250a3168ce01762149bd0fb445.tar.gz
ghdl-277ca7463070d1250a3168ce01762149bd0fb445.tar.bz2
ghdl-277ca7463070d1250a3168ce01762149bd0fb445.zip
Skip some test if gcc is not installed
Diffstat (limited to 'testsuite/gna/bug097/testsuite.sh')
-rwxr-xr-xtestsuite/gna/bug097/testsuite.sh18
1 files changed, 10 insertions, 8 deletions
diff --git a/testsuite/gna/bug097/testsuite.sh b/testsuite/gna/bug097/testsuite.sh
index b1836a423..c66369565 100755
--- a/testsuite/gna/bug097/testsuite.sh
+++ b/testsuite/gna/bug097/testsuite.sh
@@ -2,17 +2,19 @@
. ../../testenv.sh
-if [ -z $CC ]; then
- CC="gcc"
-fi
+if c_compiler_is_available; then
+ if [ -z $CC ]; then
+ CC="gcc"
+ fi
-$CC -c -fPIC getrand.c
-$CC -o getrand.so --shared getrand.o
+ $CC -c -fPIC getrand.c
+ $CC -o getrand.so --shared getrand.o
-analyze tb.vhdl
-elab_simulate tb
+ analyze tb.vhdl
+ elab_simulate tb
+ rm -f getrand.o getrand.so
+fi
clean
-rm -f getrand.o getrand.so
echo "Test successful"