diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-08-14 10:00:05 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-08-14 10:00:05 +0200 |
commit | c787526d2fac59fa2637233806a2c509dbe5e348 (patch) | |
tree | b55f6a6659d634592167b3b849bf936b97bb36f1 /testsuite | |
parent | bee2be6d440c1565ce495cb8ff7f7f2056259329 (diff) | |
download | ghdl-c787526d2fac59fa2637233806a2c509dbe5e348.tar.gz ghdl-c787526d2fac59fa2637233806a2c509dbe5e348.tar.bz2 ghdl-c787526d2fac59fa2637233806a2c509dbe5e348.zip |
testenv: also applies GHDL_FLAGS for synth.
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/testenv.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/testenv.sh b/testsuite/testenv.sh index fe8e98b21..9ae7197dc 100644 --- a/testsuite/testenv.sh +++ b/testsuite/testenv.sh @@ -106,7 +106,7 @@ elab_simulate_failure () synth() { echo "Synthesis of $@" >&2 - "$GHDL" --synth $GHDL_STD_FLAGS $@ + "$GHDL" --synth $GHDL_STD_FLAGS $GHDL_FLAGS $@ } # Check if a feature is present |