Skip to content

Commit 756d6c1

Browse files
committed
Use -V for checking yosys, rather than --version, for more compatibility
1 parent 1e9ad79 commit 756d6c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_importexport.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1650,7 +1650,7 @@ class TestVerilogInput(unittest.TestCase):
16501650
def setUp(self):
16511651
import subprocess
16521652
try:
1653-
version = subprocess.check_output(['yosys', '--version'])
1653+
version = subprocess.check_output(['yosys', '-V'])
16541654
except OSError:
16551655
raise unittest.SkipTest('Testing Verilog input requires yosys')
16561656
pyrtl.reset_working_block()

0 commit comments

Comments
 (0)