From 8a86162ae9a4e2939af162edfc6fa281931f786e Mon Sep 17 00:00:00 2001 From: Clifford Wolf Date: Thu, 18 Jun 2015 16:29:11 +0200 Subject: Progress in SMV back-end --- tests/smv/.gitignore | 1 + tests/smv/run-single.sh | 33 +++++++++++++++++++++++++++++++++ tests/smv/run-test.sh | 19 +++++++++++++++++++ 3 files changed, 53 insertions(+) create mode 100644 tests/smv/.gitignore create mode 100644 tests/smv/run-single.sh create mode 100755 tests/smv/run-test.sh (limited to 'tests/smv') diff --git a/tests/smv/.gitignore b/tests/smv/.gitignore new file mode 100644 index 000000000..9c595a6fb --- /dev/null +++ b/tests/smv/.gitignore @@ -0,0 +1 @@ +temp diff --git a/tests/smv/run-single.sh b/tests/smv/run-single.sh new file mode 100644 index 000000000..a261f4ea6 --- /dev/null +++ b/tests/smv/run-single.sh @@ -0,0 +1,33 @@ +#!/bin/bash + +cat > $1.tpl < $1.ys <> $1.log +grep "^-- invariant .* is true" $1.log + diff --git a/tests/smv/run-test.sh b/tests/smv/run-test.sh new file mode 100755 index 000000000..c61f67d30 --- /dev/null +++ b/tests/smv/run-test.sh @@ -0,0 +1,19 @@ +#!/bin/bash + +set -ex + +rm -rf temp +mkdir -p temp + +../../yosys -p 'test_cell -muxdiv -w temp/test all' +rm -f temp/test_{alu,fa,lcu,lut,macc}_* + +cat > temp/makefile << "EOT" +all: $(addsuffix .ok,$(basename $(wildcard temp/test_*.il))) +%.ok: %.il + bash run-single.sh $(basename $<) + touch $@ +EOT + +${MAKE:-make} -f temp/makefile + -- cgit v1.2.3