3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-08-11 05:30:53 +00:00

Added tests/vloghtb/test_share.sh

This commit is contained in:
Clifford Wolf 2014-07-20 13:20:52 +02:00
parent 6f450d0224
commit 2e358bd667
5 changed files with 57 additions and 1 deletions

7
tests/vloghtb/common.sh Normal file
View file

@ -0,0 +1,7 @@
log_pass() {
printf "%-15s %s %s %s\n" "$1" "$2" "`printf "%20s" "$2" | tr -d a-zA-Z0-9_ | tr ' ' .`" "pass."
}
log_fail() {
printf "%-15s %s %s %s\n" "$1" "$2" "`printf "%20s" "$2" | tr -d a-zA-Z0-9_ | tr ' ' .`" "FAIL."
}