mirror of
https://github.com/YosysHQ/yosys
synced 2026-01-28 12:58:44 +00:00
11 lines
No EOL
188 B
Bash
Executable file
11 lines
No EOL
188 B
Bash
Executable file
#!/usr/bin/env bash
|
|
source ../common-env.sh
|
|
set -e
|
|
for x in *.ys; do
|
|
echo "Running $x.."
|
|
../../yosys --no-version -ql ${x%.ys}.log $x
|
|
done
|
|
|
|
for x in *.blif; do
|
|
diff $x.out $x.ok
|
|
done |