Skip to content

Commit 6b307b1

Browse files
author
david
committed
Tester system
1 parent 8c9ab6f commit 6b307b1

9 files changed

+79
-0
lines changed

tests/cleanupsandbox.sh

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
rm sandbox/Output.class sandbox/Output.java

tests/do.sh

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/bin/bash
2+
python ../pls.py $1 > sandbox/Output.java
3+
javac sandbox/Output.java
4+
java sandbox/Output
5+
rm parser.out parsetab.py parsetab.pyc 2> /dev/null
6+
7+
8+

tests/do.sh~

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
2+
python ../pls.py $1 > sandbox/Output.java
3+
javac sandbox/Output.java
4+
java sandbox/Output
5+
rm parser.out parsetab.py parsetab.pyc 2> /dev/null
6+
7+
8+

tests/pls.sh

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/bin/bash
2+
python ../pls.py $1 > Output.java 2> /dev/null
3+
javac Output.java 2> /dev/null
4+
java -cp . Output
5+
rm Output.java Output.class parser.out parsetab.py parsetab.pyc 2> /dev/null

tests/pls.sh~

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
python ../pls.py $1 > Output.java 2> /dev/null
2+
javac Output.java 2> /dev/null
3+
java -cp . Output
4+
rm Output.java Output.class parser.out parsetab.py parsetab.pyc 2> /dev/null

tests/sandbox/Output.class

532 Bytes
Binary file not shown.

tests/sandbox/Output.java

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
2+
public class Output {
3+
4+
public static void main(String[] args) throws Exception {
5+
double prev = 0;
6+
double aux = 0;
7+
double fib = 1; for(; (((fib < 500) ? 1 : 0)) != 0;) { aux = fib;
8+
fib = fib + prev;
9+
prev = aux;
10+
System.out.println(fib);}
11+
}}

tests/tester.py

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
import os
2+
import os.path
3+
import subprocess
4+
5+
PATH='./Output.java'
6+
os.chdir("./sandbox/")
7+
8+
def test():
9+
print("Inside Testing Module")
10+
#subprocess.check_output(["echo", "Hello World!"])
11+
subprocess.check_output(["./do.sh", "input.pls"])
12+
13+
def run():
14+
output=subprocess.call(['./do.sh fib.pls'])
15+
16+
if os.path.isfile(PATH) and os.access(PATH, os.R_OK):
17+
print "Output java File exists and is readable"
18+
test()
19+
else:
20+
print "Either the Output java file is missing or is not readable"
21+
run()

tests/tester.py~

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
import os
2+
import os.path
3+
import subprocess
4+
5+
PATH='./Output.java'
6+
os.chdir("./sandbox/")
7+
8+
def test():
9+
print("Inside Testing Module")
10+
#subprocess.check_output(["echo", "Hello World!"])
11+
subprocess.check_output(["./do.sh", "input.pls"])
12+
13+
def run():
14+
output=subprocess.call(['./do.sh fib.pls'])
15+
16+
if os.path.isfile(PATH) and os.access(PATH, os.R_OK):
17+
print "Output java File exists and is readable"
18+
test()
19+
else:
20+
print "Either the Output java file is missing or is not readable"
21+
run()

0 commit comments

Comments
 (0)