xrun -> xsim

This commit is contained in:
Ed
2024-04-19 10:42:23 +01:00
parent 25cd5ffafc
commit 9a8dfea641

View File

@@ -51,9 +51,9 @@ class UnityTestExecutable(pytest.Item):
print("run axe for executable ", self.name)
test_output = subprocess.check_output(["axe", self.name], text=True)
else:
print("run xrun for executable ", self.name)
print("run xsim for executable ", self.name)
test_output = subprocess.check_output(
["xrun", "--io", "--id", "0", self.name],
["xsim", self.name],
text=True,
stderr=subprocess.STDOUT,
)