aboutsummaryrefslogtreecommitdiffstats
path: root/tests/realmath
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2014-11-09 11:02:20 +0100
committerClifford Wolf <clifford@clifford.at>2014-11-09 11:02:20 +0100
commit1e0f6b5ddbfc3a7bc30f2537decf45654e7f1524 (patch)
treefb85b0c0a95accfc503f2b5a32015b45a96698bb /tests/realmath
parenta112b1093444429a1a55a90b73c58c8b7ffee1bc (diff)
downloadyosys-1e0f6b5ddbfc3a7bc30f2537decf45654e7f1524.tar.gz
yosys-1e0f6b5ddbfc3a7bc30f2537decf45654e7f1524.tar.bz2
yosys-1e0f6b5ddbfc3a7bc30f2537decf45654e7f1524.zip
Added "yosys -qq" to also quiet warning messages
Diffstat (limited to 'tests/realmath')
-rwxr-xr-xtests/realmath/run-test.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/realmath/run-test.sh b/tests/realmath/run-test.sh
index b8e222ad6..0997ccb5d 100755
--- a/tests/realmath/run-test.sh
+++ b/tests/realmath/run-test.sh
@@ -11,7 +11,7 @@ echo "running tests.."
for ((i = 0; i < 100; i++)); do
echo -n "[$i]"
idx=$( printf "%05d" $i )
- ../../../yosys -q uut_${idx}.ys
+ ../../../yosys -qq uut_${idx}.ys
iverilog -o uut_${idx}_tb uut_${idx}_tb.v uut_${idx}.v uut_${idx}_syn.v
./uut_${idx}_tb | tee uut_${idx}.err
if test -s uut_${idx}.err; then