Skip to content
Snippets Groups Projects
Commit 28cbb4dd authored by Nguyen Anh Quynh's avatar Nguyen Anh Quynh
Browse files

test_xedparse.py: print a blank line between failed tests

parent 3cfac68f
No related branches found
No related tags found
No related merge requests found
...@@ -15,7 +15,7 @@ def printTest(x64, ip, expectedData, asm, data): ...@@ -15,7 +15,7 @@ def printTest(x64, ip, expectedData, asm, data):
sys.stdout.write("Actual (%.2d) " % len(data)) sys.stdout.write("Actual (%.2d) " % len(data))
for i in range(0, len(data)): for i in range(0, len(data)):
sys.stdout.write("%02X " % data[i]) sys.stdout.write("%02X " % data[i])
print("") print("\n")
def runTest(n, x64, ip, expectedData, asm): def runTest(n, x64, ip, expectedData, asm):
global successCount global successCount
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment