B05 engine - difference show
This commit is contained in:
parent
712846817d
commit
96574d4352
@ -63,6 +63,7 @@ with open(join_path(sys.argv[3]), "r", newline="", encoding="utf8") as csvfile:
|
|||||||
test_out = list(filereader)
|
test_out = list(filereader)
|
||||||
|
|
||||||
|
|
||||||
|
is_difference = []
|
||||||
for i, word in enumerate(test_in):
|
for i, word in enumerate(test_in):
|
||||||
current_state = 0
|
current_state = 0
|
||||||
if len(word) != 0:
|
if len(word) != 0:
|
||||||
@ -74,8 +75,13 @@ for i, word in enumerate(test_in):
|
|||||||
print("YES\t", end="")
|
print("YES\t", end="")
|
||||||
if "YES" != test_out[i][0]:
|
if "YES" != test_out[i][0]:
|
||||||
print("ERROR", word, end="")
|
print("ERROR", word, end="")
|
||||||
|
is_difference.append(i)
|
||||||
else:
|
else:
|
||||||
print("NO\t", end="")
|
print("NO\t", end="")
|
||||||
if "NO" != test_out[i][0]:
|
if "NO" != test_out[i][0]:
|
||||||
print("ERROR", word, end="")
|
print("ERROR", word, end="")
|
||||||
|
is_difference.append(i)
|
||||||
print()
|
print()
|
||||||
|
|
||||||
|
if len(is_difference) != 0:
|
||||||
|
print(is_difference)
|
||||||
|
Loading…
Reference in New Issue
Block a user