mirror of
https://github.com/YosysHQ/yosys
synced 2025-11-22 05:36:43 +00:00
12 lines
245 B
Bash
Executable file
12 lines
245 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
if ! which timeout ; then
|
|
echo "No 'timeout', skipping test"
|
|
exit 0
|
|
fi
|
|
|
|
if ! timeout 5 ../../yosys bug5495.v -p 'hierarchy; techmap; abc -script bug5495.abc' ; then
|
|
echo "Yosys failed to complete"
|
|
exit 1
|
|
fi
|
|
|