Bug fixes.
This commit is contained in:
@@ -23,6 +23,9 @@ stock E(E2 t)
|
||||
{
|
||||
}
|
||||
|
||||
stock F(int n[10]) {
|
||||
}
|
||||
|
||||
public main()
|
||||
{
|
||||
new x[10]
|
||||
@@ -31,4 +34,5 @@ public main()
|
||||
C(x)
|
||||
D(E1:5)
|
||||
E(E2:5)
|
||||
F(x)
|
||||
}
|
||||
|
||||
@@ -22,7 +22,7 @@ def run_tests(args):
|
||||
kind = 'pass'
|
||||
|
||||
try:
|
||||
argv = [args.spcomp, os.path.join(testdir, test + '.sp')]
|
||||
argv = [os.path.abspath(args.spcomp), os.path.join(testdir, test + '.sp')]
|
||||
p = subprocess.Popen(argv, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
||||
stdout, stderr = p.communicate()
|
||||
stdout = stdout.decode('utf-8')
|
||||
|
||||
Reference in New Issue
Block a user