mirror of
https://github.com/YosysHQ/sby.git
synced 2025-04-05 06:04:06 +00:00
Check if config contains any engines, fixes #38
Signed-off-by: Clifford Wolf <clifford@clifford.at>
This commit is contained in:
parent
faa5b1f908
commit
f087a71f49
|
@ -589,6 +589,9 @@ class SbyJob:
|
|||
if engine[0] not in ["smtbmc", "btor"]:
|
||||
self.error("Option skip is only valid for smtbmc and btor engines.")
|
||||
|
||||
if len(self.engines) == 0:
|
||||
self.error("Config file is lacking engine configuration.")
|
||||
|
||||
if self.reusedir:
|
||||
rmtree("%s/model" % self.workdir, ignore_errors=True)
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue