mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-06 17:44:09 +00:00
16 lines
251 B
Bash
Executable file
16 lines
251 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -eu
|
|
|
|
OPTIND=1
|
|
seed="" # default to no seed specified
|
|
while getopts "S:" opt
|
|
do
|
|
case "$opt" in
|
|
S) seed="$OPTARG" ;;
|
|
esac
|
|
done
|
|
shift "$((OPTIND-1))"
|
|
|
|
python3 generate.py
|
|
exec ${MAKE:-make} -f run-test.mk SEED="$seed"
|