mirror of
https://github.com/YosysHQ/yosys
synced 2025-11-24 22:51:34 +00:00
7 lines
165 B
Bash
Executable file
7 lines
165 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
if ! timeout 5 ../../yosys bug5495.v -p 'hierarchy; techmap; abc -script bug5495.abc' ; then
|
|
echo "Yosys failed to complete"
|
|
exit 1
|
|
fi
|
|
|