-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgenerateShellScript.py
55 lines (48 loc) · 1.84 KB
/
generateShellScript.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# Automatic calling all the necessary Files to test all test cases.
import os
import subprocess
n = 0
fileShellScript = open("shellScript.sh","w")
dirList = os.listdir('testCases/')
dirList.sort()
for sFile in dirList:
if sFile.find('.pas') == -1:
dirList.remove(sFile)
for sFile in dirList:
n += 1
def copyAllTheThings(n):
inc = 1
temp = n
fileShellScript.write("clear\n")
fileShellScript.write("echo \"\"######################## Starting Shell Script \"########################\"\n")
fileShellScript.write("echo \"# Compiling all *.java Files...\"\n")
fileShellScript.write("javac *.java\n")
fileShellScript.write("echo \"# Removing old tests...\"\n")
fileShellScript.write("rm -r tests/\n")
fileShellScript.write("echo \"# Preparing directory...\"\n")
fileShellScript.write("mkdir tests\n")
while temp != 0:
fileShellScript.write("cp testCases/"+str(inc)+".pas tests/\n")
inc += 1
temp -= 1
def createShellScript(n):
inc = 1
temp = n
while temp != 0:
fileShellScript.write("echo \"######################## Test " + str(inc) + " ########################\"\n")
fileShellScript.write("echo \"# Calling StupsCompiler - Compiling...\"\n")
fileShellScript.write("java StupsCompiler -compile tests/"+str(inc)+".pas\n")
fileShellScript.write("echo \"# Calling StupsCompiler - Liveness Analysis...\"\n")
fileShellScript.write("java StupsCompiler -liveness tests/"+str(inc)+".pas\n")
fileShellScript.write("echo \"# Calling jasmin.jar...\"\n")
fileShellScript.write("java -jar jasmin.jar tests/"+str(inc)+".j\n")
fileShellScript.write("echo \"# Executing Java File...\"\n")
fileShellScript.write("java tests/"+str(inc)+"\n")
fileShellScript.write("echo \"# Done.\"\n")
inc += 1
temp -= 1
# Main Program
copyAllTheThings(n)
createShellScript(n)
print "# Found "+str(n)+" testcases. Now execute:"
print "# > sh shellScript.sh"