diff options
author | Clifford Wolf <clifford@clifford.at> | 2015-01-27 19:30:06 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2015-01-27 19:30:06 +0100 |
commit | e666611534174621e8089c732186e4aa07f0ce68 (patch) | |
tree | cd24a12284c4ab65383eb190263a073c312930c3 /tests/share | |
parent | c7c99a694bf63f7cc9f01ed08b2411ae98ff8eed (diff) | |
download | yosys-e666611534174621e8089c732186e4aa07f0ce68.tar.gz yosys-e666611534174621e8089c732186e4aa07f0ce68.tar.bz2 yosys-e666611534174621e8089c732186e4aa07f0ce68.zip |
Bugfix in resource sharing test
Diffstat (limited to 'tests/share')
-rwxr-xr-x | tests/share/run-test.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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 |