aboutsummaryrefslogtreecommitdiffstats
path: root/tests/arch/run-test.sh
blob: fc4175be88ae62a4d8b04ad5e05f402697258943 (plain)
1
2
3
4
5
6
7
8
#!/bin/bash

set -e

echo "Running syntax check on arch sim models"
for arch in ../../techlibs/*; do
	find $arch -name cells_sim.v -print0 | xargs -0 -n1 -r iverilog -t null -I$arch
done