mirror of https://github.com/YosysHQ/yosys.git
Converted some more
This commit is contained in:
parent
2bc46e77c8
commit
68e01a03d7
|
|
@ -64,9 +64,9 @@ MK_TEST_DIRS += ./asicworld
|
||||||
#SH_TEST_DIRS += ./bram
|
#SH_TEST_DIRS += ./bram
|
||||||
#SH_TEST_DIRS += ./svinterfaces
|
#SH_TEST_DIRS += ./svinterfaces
|
||||||
#SH_TEST_DIRS += ./xprop
|
#SH_TEST_DIRS += ./xprop
|
||||||
#SH_TEST_DIRS += ./select
|
MK_TEST_DIRS += ./select
|
||||||
#SH_TEST_DIRS += ./peepopt
|
MK_TEST_DIRS += ./peepopt
|
||||||
#SH_TEST_DIRS += ./proc
|
MK_TEST_DIRS += ./proc
|
||||||
MK_TEST_DIRS += ./blif
|
MK_TEST_DIRS += ./blif
|
||||||
#SH_TEST_DIRS += ./arch
|
#SH_TEST_DIRS += ./arch
|
||||||
#SH_TEST_DIRS += ./rpc
|
#SH_TEST_DIRS += ./rpc
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,8 @@
|
||||||
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
|
import sys
|
||||||
|
sys.path.append("..")
|
||||||
|
|
||||||
|
import gen_tests_makefile
|
||||||
|
|
||||||
|
gen_tests_makefile.generate(["--yosys-scripts"])
|
||||||
|
|
@ -1,7 +0,0 @@
|
||||||
#!/usr/bin/env bash
|
|
||||||
source ../common-env.sh
|
|
||||||
set -e
|
|
||||||
for x in *.ys; do
|
|
||||||
echo "Running $x.."
|
|
||||||
../../yosys -ql ${x%.ys}.log $x
|
|
||||||
done
|
|
||||||
|
|
@ -0,0 +1,8 @@
|
||||||
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
|
import sys
|
||||||
|
sys.path.append("..")
|
||||||
|
|
||||||
|
import gen_tests_makefile
|
||||||
|
|
||||||
|
gen_tests_makefile.generate(["--yosys-scripts"])
|
||||||
|
|
@ -1,7 +0,0 @@
|
||||||
#!/usr/bin/env bash
|
|
||||||
source ../common-env.sh
|
|
||||||
set -e
|
|
||||||
for x in *.ys; do
|
|
||||||
echo "Running $x.."
|
|
||||||
../../yosys -ql ${x%.ys}.log $x >/dev/null 2>&1
|
|
||||||
done
|
|
||||||
|
|
@ -0,0 +1,8 @@
|
||||||
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
|
import sys
|
||||||
|
sys.path.append("..")
|
||||||
|
|
||||||
|
import gen_tests_makefile
|
||||||
|
|
||||||
|
gen_tests_makefile.generate(["--yosys-scripts"])
|
||||||
|
|
@ -1,7 +0,0 @@
|
||||||
#!/usr/bin/env bash
|
|
||||||
source ../common-env.sh
|
|
||||||
set -e
|
|
||||||
for x in *.ys; do
|
|
||||||
echo "Running $x.."
|
|
||||||
../../yosys -ql ${x%.ys}.log $x >/dev/null 2>&1
|
|
||||||
done
|
|
||||||
Loading…
Reference in New Issue