This commit is contained in:
Wankupi
2023-10-30 19:34:40 +08:00
commit 2e29af68b3
107 changed files with 7880 additions and 0 deletions

21
testcases/test.py Normal file
View File

@ -0,0 +1,21 @@
import filecmp
import os
if os.path.exists("temp"):
os.system("rm -rf ./temp")
os.makedirs("temp")
for i in range(14):
inst ="./code < testData/test"+str(i)+".in > temp/test"+str(i)+".out"
print(inst)
os.system(inst)
if not filecmp.cmp("testData/test"+str(i)+".out","temp/test"+str(i)+".out"):
f = open("testData/test" + str(i) + ".in", mode='r')
title = f.readline()[1:]
print("test", i, "wrong:", title)
os.system("rm -rf ./temp")
os.makedirs("temp")
for i in range(20):
inst = "./code < BigIntegerTest/BigIntegerTest" + str(i) + ".in > temp/test" + str(i) + ".out"
print(inst)
os.system(inst)
if not filecmp.cmp("BigIntegerTest/BigIntegerTest" + str(i) + ".out", "temp/test" + str(i) + ".out"):
print("big integer test", i, "wrong")