diff options
Diffstat (limited to 'testsuite/testenv.sh')
-rw-r--r-- | testsuite/testenv.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/testenv.sh b/testsuite/testenv.sh index 1c2bbae..5dd7811 100644 --- a/testsuite/testenv.sh +++ b/testsuite/testenv.sh @@ -48,7 +48,7 @@ analyze () synth_import () { travis_start "synth" "Synthesize $*" - run_yosys -p "ghdl $*" + run_yosys -q -p "ghdl $*" status=$? travis_finish "synth" return $status @@ -57,7 +57,7 @@ synth_import () synth_ice40 () { travis_start "synth" "Synthesize $*" - run_yosys -p "ghdl $*; synth_ice40 -blif out.blif" + run_yosys -q -p "ghdl $*; synth_ice40 -blif out.blif" travis_finish "synth" } |