mirror of
https://github.com/stenzek/duckstation.git
synced 2025-06-06 03:25:36 +00:00
RegTest: Check size before hash
This commit is contained in:
parent
206f32e511
commit
cf32774b24
@ -260,6 +260,9 @@ def write(line):
|
||||
|
||||
def compare_frames(path1, path2):
|
||||
try:
|
||||
if os.stat(path1).st_size != os.stat(path2).st_size:
|
||||
return False
|
||||
|
||||
with open(path1, "rb") as f:
|
||||
hash1 = hashlib.md5(f.read()).digest()
|
||||
with open(path2, "rb") as f:
|
||||
|
Loading…
x
Reference in New Issue
Block a user