diff options
Diffstat (limited to 'tests/xts.py')
-rw-r--r-- | tests/xts.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/xts.py b/tests/xts.py index 26729176e..0e277dc3d 100644 --- a/tests/xts.py +++ b/tests/xts.py @@ -197,9 +197,8 @@ def _populate_profile(): return profile -# If the symlink for the XTS has not been created exit if not os.path.exists(X_TEST_SUITE): - print("xtest symlink not found!") - sys.exit(0) + print("Error: xtest not found.", file=sys.stderr) + sys.exit(1) profile = _populate_profile() # pylint: disable=invalid-name |