diff options
author | Dan Ravensloft <dan.ravensloft@gmail.com> | 2020-05-28 11:33:19 +0100 |
---|---|---|
committer | Marcelina KoĆcielnicka <mwk@0x04.net> | 2020-07-04 19:45:10 +0200 |
commit | c6765443fdb57938418fb2b80bf56cda0e7d229b (patch) | |
tree | f5fc653018e45f3a9febd623f4f7cea7823e1906 /tests | |
parent | 52fbaeca07a5d8d0a3776d56665dc3bdaadf96b4 (diff) | |
download | yosys-c6765443fdb57938418fb2b80bf56cda0e7d229b.tar.gz yosys-c6765443fdb57938418fb2b80bf56cda0e7d229b.tar.bz2 yosys-c6765443fdb57938418fb2b80bf56cda0e7d229b.zip |
Improve MISTRAL_FF specify rules
Co-authored-by: Eddie Hung <eddie@fpgeh.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/arch/intel_alm/fsm.ys | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/arch/intel_alm/fsm.ys b/tests/arch/intel_alm/fsm.ys index 20321c62f..02e4a9789 100644 --- a/tests/arch/intel_alm/fsm.ys +++ b/tests/arch/intel_alm/fsm.ys @@ -13,7 +13,8 @@ cd fsm # Constrain all select calls below inside the top module select -assert-count 6 t:MISTRAL_FF select -assert-max 2 t:MISTRAL_ALUT2 # Clang returns 2, GCC returns 1 +select -assert-count 1 t:MISTRAL_ALUT3 select -assert-max 1 t:MISTRAL_ALUT4 # Clang returns 0, GCC returns 1 select -assert-max 5 t:MISTRAL_ALUT5 # Clang returns 5, GCC returns 4 select -assert-max 2 t:MISTRAL_ALUT6 # Clang returns 1, GCC returns 2 -select -assert-none t:MISTRAL_FF t:MISTRAL_ALUT2 t:MISTRAL_ALUT4 t:MISTRAL_ALUT5 t:MISTRAL_ALUT6 %% t:* %D +select -assert-none t:MISTRAL_FF t:MISTRAL_ALUT2 t:MISTRAL_ALUT3 t:MISTRAL_ALUT4 t:MISTRAL_ALUT5 t:MISTRAL_ALUT6 %% t:* %D |