Skip to content

Commit

Permalink
Merge pull request #134 from n8xm/rel_abs_paths
Browse files Browse the repository at this point in the history
Support running regtests.py outside .ini directory
  • Loading branch information
zingale committed Apr 16, 2024
2 parents dfb14d7 + b48e25a commit 93ddfb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ def __init__(self, args):
# and build directories
self.repos = {}

self.test_file_path = os.getcwd() + '/' + self.args.input_file[0]
self.test_file_path = os.path.abspath(self.args.input_file[0])

self.suiteName = "testDefault"
self.sub_title = ""
Expand Down

0 comments on commit 93ddfb1

Please sign in to comment.