From 1f6bb85359149a016811e7e7fef980c3d45211e7 Mon Sep 17 00:00:00 2001 From: Ruben Undheim Date: Fri, 18 Oct 2019 19:56:51 +0000 Subject: New upstream version 0.9 --- tests/arch/run-test.sh | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 tests/arch/run-test.sh (limited to 'tests/arch/run-test.sh') diff --git a/tests/arch/run-test.sh b/tests/arch/run-test.sh new file mode 100755 index 00000000..5292d161 --- /dev/null +++ b/tests/arch/run-test.sh @@ -0,0 +1,18 @@ +#!/bin/bash + +set -e + +echo "Running syntax check on arch sim models" +for arch in ../../techlibs/*; do + find $arch -name cells_sim.v | while read path; do + echo -n "Test $path ->" + iverilog -t null -I$arch $path + echo " ok" + done +done + +for path in "../../techlibs/common/simcells.v" "../../techlibs/common/simlib.v"; do + echo -n "Test $path ->" + iverilog -t null $path + echo " ok" +done -- cgit v1.2.3