mirror of
https://github.com/ARMSX2/ARMSX2.git
synced 2026-08-24 16:50:16 -07:00
DumpRunner: Fix script handling of paths containing square brackets
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user