diff options
author | Jannis Harder <me@jix.one> | 2023-02-10 19:17:16 +0100 |
---|---|---|
committer | Jannis Harder <me@jix.one> | 2023-02-10 19:17:16 +0100 |
commit | 6d021f04d4363c971d3a4d40948f89a4699f45f3 (patch) | |
tree | b6edb08e74c1629b6f3689d4eee984ba5872137a /tests/xprop/test.py | |
parent | f3c4e93d2499dd96e331e49ad09540af9b9cd0bd (diff) | |
download | yosys-6d021f04d4363c971d3a4d40948f89a4699f45f3.tar.gz yosys-6d021f04d4363c971d3a4d40948f89a4699f45f3.tar.bz2 yosys-6d021f04d4363c971d3a4d40948f89a4699f45f3.zip |
tests: Fix path of yosys invocation in xprop tests
For now xprop test failures are still expected and ignored, but without
this change, they did not even run unless the yosys build was in path.
Diffstat (limited to 'tests/xprop/test.py')
-rw-r--r-- | tests/xprop/test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/xprop/test.py b/tests/xprop/test.py index 84ad0a1f4..df355e7dc 100644 --- a/tests/xprop/test.py +++ b/tests/xprop/test.py @@ -47,7 +47,7 @@ if "clean" in steps: def yosys(command): - subprocess.check_call(["yosys", "-Qp", command]) + subprocess.check_call(["../../../yosys", "-Qp", command]) def remove(file): try: |