From: Clifford Wolf Date: Tue, 27 Jan 2015 18:30:06 +0000 (+0100) Subject: Bugfix in resource sharing test X-Git-Tag: yosys-0.5~60 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e666611534174621e8089c732186e4aa07f0ce68;p=yosys.git Bugfix in resource sharing test --- diff --git a/tests/share/run-test.sh b/tests/share/run-test.sh index 203d6fcd7..6e880677c 100755 --- a/tests/share/run-test.sh +++ b/tests/share/run-test.sh @@ -18,7 +18,7 @@ for i in $( ls temp/*.ys | sed 's,[^0-9],,g; s,^0*\(.\),\1,g;' ); do done echo -failed_share=$( echo $( gawk '/^#job#/ { j=$2; db[j]=0; } /^Removing [24] cells/ { delete db[j]; } END { for (j in db) print(j); }' temp/all_share_log.txt ) ) +failed_share=$( echo $( gawk '/^#job#/ { j=$2; db[j]=0; } /^Removing [246] cells/ { delete db[j]; } END { for (j in db) print(j); }' temp/all_share_log.txt ) ) if [ -n "$failed_share" ]; then echo "Resource sharing failed for the following test cases: $failed_share" false