diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-09-03 12:17:26 -0700 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2019-09-03 12:17:26 -0700 |
commit | 0ca070663091ec0eecd089801f37339feb7813c8 (patch) | |
tree | 51f3bf107e8ed1c52bffbc07bcf1da9e41249950 /tests | |
parent | 81247168302a578add43e3e856eb74868dc5a1ba (diff) | |
download | yosys-0ca070663091ec0eecd089801f37339feb7813c8.tar.gz yosys-0ca070663091ec0eecd089801f37339feb7813c8.tar.bz2 yosys-0ca070663091ec0eecd089801f37339feb7813c8.zip |
Expand test with `hierarchy' without -auto-top
Diffstat (limited to 'tests')
-rw-r--r-- | tests/various/hierarchy_defer.ys | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/various/hierarchy_defer.ys b/tests/various/hierarchy_defer.ys index baec52c9d..70f5b70a3 100644 --- a/tests/various/hierarchy_defer.ys +++ b/tests/various/hierarchy_defer.ys @@ -13,8 +13,15 @@ module sub(input i, output o); assign o = ~i; endmodule EOT +design -save read hierarchy -auto-top select -assert-any top select -assert-any sub select -assert-none foo + +design -load read +hierarchy +select -assert-any top +select -assert-any sub +select -assert-none foo |