mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-11 19:53:35 +00:00
13 lines
199 B
Bash
Executable file
13 lines
199 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
for x in *.ys; do
|
|
echo "Running $x.."
|
|
../../yosys -ql ${x%.ys}.log $x
|
|
done
|
|
for s in *.sh; do
|
|
if [ "$s" != "run-test.sh" ]; then
|
|
echo "Running $s.."
|
|
bash $s
|
|
fi
|
|
done
|