mirror of https://github.com/YosysHQ/yosys.git
Merge pull request #2432 from Xiretza/nexus-tests
Update nexus arch tests to new harness
This commit is contained in:
commit
6940ef933a
|
@ -1,20 +1,4 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -e
|
set -eu
|
||||||
{
|
source ../../gen-tests-makefile.sh
|
||||||
echo "all::"
|
run_tests --yosys-scripts --bash --yosys-args "-w 'Yosys has only limited support for tri-state logic at the moment.'"
|
||||||
for x in *.ys; do
|
|
||||||
echo "all:: run-$x"
|
|
||||||
echo "run-$x:"
|
|
||||||
echo " @echo 'Running $x..'"
|
|
||||||
echo " @../../../yosys -ql ${x%.ys}.log -w 'Yosys has only limited support for tri-state logic at the moment.' $x"
|
|
||||||
done
|
|
||||||
for s in *.sh; do
|
|
||||||
if [ "$s" != "run-test.sh" ]; then
|
|
||||||
echo "all:: run-$s"
|
|
||||||
echo "run-$s:"
|
|
||||||
echo " @echo 'Running $s..'"
|
|
||||||
echo " @bash $s"
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
} > run-test.mk
|
|
||||||
exec ${MAKE:-make} -f run-test.mk
|
|
||||||
|
|
Loading…
Reference in New Issue