From 6d021f04d4363c971d3a4d40948f89a4699f45f3 Mon Sep 17 00:00:00 2001
From: Jannis Harder <me@jix.one>
Date: Fri, 10 Feb 2023 19:17:16 +0100
Subject: [PATCH] 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.
---
 tests/xprop/test.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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: