Skip to content

Commit

Permalink
DumpRunner: Fix script handling of paths containing square brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
refractionpcsx2 committed Dec 23, 2023
1 parent 3a242b5 commit 18fea64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pcsx2-gsrunner/test_check_dumps.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def check_regression_test(baselinedir, testdir, name):
#print("*** %s is missing in test set" % name)
return False

images = glob.glob(os.path.join(dir1, "*_frame*.png"))
images = glob.glob(os.path.join(glob.escape(dir1), "*_frame*.png"))
diff_frames = []
first_fail = True
stats = compare_stats(dir1, dir2)
Expand Down

0 comments on commit 18fea64

Please sign in to comment.