Skip to content

Commit

Permalink
Fix diff comparisons on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
zrax committed Aug 8, 2024
1 parent 95afdfa commit 69f5614
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 12 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ target_link_libraries(pycdc pycxx)
install(TARGETS pycdc
RUNTIME DESTINATION bin)

find_package(Python3 3.5 COMPONENTS Interpreter)
find_package(Python3 3.6 COMPONENTS Interpreter)
if(Python3_FOUND)
add_custom_target(check
COMMAND "${Python3_EXECUTABLE}" "${CMAKE_CURRENT_SOURCE_DIR}/tests/run_tests.py"
Expand Down
24 changes: 13 additions & 11 deletions tests/run_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,26 +15,28 @@ def decompyle_one(test_name, pyc_file, outdir, tokenized_expect):
out_base = os.path.join(outdir, os.path.basename(pyc_file))
proc = subprocess.run(
[os.path.join(os.getcwd(), 'pycdc'), pyc_file, '-o', out_base + '.src.py'],
stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
pycdc_output = proc.stdout.decode('utf-8', errors='replace')
stdout=subprocess.PIPE, stderr=subprocess.STDOUT, universal_newlines=True,
encoding='utf-8', errors='replace')
pycdc_output = proc.stdout
if proc.returncode != 0 or pycdc_output:
with open(out_base + '.err', 'w') as errfile:
errfile.write(pycdc_output)
return (False, [pycdc_output])
return False, [pycdc_output]
elif os.path.exists(out_base + '.err'):
os.unlink(out_base + '.err')

proc = subprocess.run(
[sys.executable, os.path.join(SCRIPTS_DIR, 'token_dump'), out_base + '.src.py'],
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
tokenized = proc.stdout.decode('utf-8', errors='replace')
token_dump_err = proc.stderr.decode('utf-8', errors='replace')
stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True,
encoding='utf-8', errors='replace')
tokenized = proc.stdout
token_dump_err = proc.stderr
with open(out_base + '.tok.txt', 'w') as tokfile:
tokfile.write(tokenized)
if proc.returncode != 0 or token_dump_err:
with open(out_base + '.tok.err', 'w') as errfile:
errfile.write(token_dump_err)
return (False, [token_dump_err])
return False, [token_dump_err]
elif os.path.exists(out_base + '.tok.err'):
os.unlink(out_base + '.tok.err')

Expand All @@ -46,9 +48,9 @@ def decompyle_one(test_name, pyc_file, outdir, tokenized_expect):
diff = list(diff)
with open(out_base + '.tok.diff', 'w') as diff_file:
diff_file.writelines(diff)
return (False, ['Tokenized output does not match expected output:\n'] + diff)
return False, ['Tokenized output does not match expected output:\n'] + diff

return (True, [])
return True, []


def run_test(test_file):
Expand All @@ -61,7 +63,7 @@ def run_test(test_file):
compiled_files = glob.glob(os.path.join(TEST_DIR, 'compiled', test_name + '.?.*.pyc'))
xfail_files = glob.glob(os.path.join(TEST_DIR, 'xfail', test_name + '.?.*.pyc'))
if not compiled_files and not xfail_files:
return (1, 'No compiled/xfail modules found for {}\n'.format(test_name))
return 1, 'No compiled/xfail modules found for {}\n'.format(test_name)

outdir = os.path.join(os.getcwd(), 'tests-out')
os.makedirs(outdir, exist_ok=True)
Expand Down Expand Up @@ -103,7 +105,7 @@ def run_test(test_file):
else:
status_line += '\033[31mFAIL ({} of {})\033[0m\n'.format(fails, len(compiled_files))

return (fails, [status_line] + errlines)
return fails, [status_line] + errlines


def main():
Expand Down

0 comments on commit 69f5614

Please sign in to comment.