mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-09 04:31:25 +00:00
share: Cleanup and additional testing
Fixes a typo and adds another test case that triggers the fallback behavior as the existing tests all trigger the new optimization.
This commit is contained in:
parent
7593b5b224
commit
4b273a4ae9
3 changed files with 36 additions and 9 deletions
|
@ -3,11 +3,13 @@ proc;;
|
|||
|
||||
copy test_1 gold_1
|
||||
copy test_2 gold_2
|
||||
share test_1 test_2;;
|
||||
copy test_3 gold_3
|
||||
share test_1 test_2 test_3;;
|
||||
|
||||
select -assert-count 1 test_1/t:$mul
|
||||
select -assert-count 1 test_2/t:$mul
|
||||
select -assert-count 1 test_2/t:$div
|
||||
select -assert-count 1 test_3/t:$div
|
||||
|
||||
miter -equiv -flatten -make_outputs -make_outcmp gold_1 test_1 miter_1
|
||||
sat -verify -prove trigger 0 -show-inputs -show-outputs miter_1
|
||||
|
@ -15,3 +17,5 @@ sat -verify -prove trigger 0 -show-inputs -show-outputs miter_1
|
|||
miter -equiv -flatten -make_outputs -make_outcmp gold_2 test_2 miter_2
|
||||
sat -verify -prove trigger 0 -show-inputs -show-outputs miter_2
|
||||
|
||||
miter -equiv -flatten -make_outputs -make_outcmp gold_3 test_3 miter_3
|
||||
sat -verify -prove trigger 0 -show-inputs -show-outputs miter_3
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue