Skip to content

Commit 20a2a2e

Browse files
authored
Merge pull request #396 from pllab/yosys-version
Use `-V` for checking yosys, rather than `--version`, for more compatibility
2 parents 1e9ad79 + 756d6c1 commit 20a2a2e

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)