git.asbjorn.biz
/
swftools.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
75aa93f
)
only wait 1 second for compiler, not 60
author
Matthias Kramm
<kramm@quiss.org>
Fri, 13 Feb 2009 14:59:49 +0000
(15:59 +0100)
committer
Matthias Kramm
<kramm@quiss.org>
Fri, 13 Feb 2009 14:59:49 +0000
(15:59 +0100)
lib/as3/runtests.py
patch
|
blob
|
history
diff --git
a/lib/as3/runtests.py
b/lib/as3/runtests.py
index
b46206d
..
2912be4
100644
(file)
--- a/
lib/as3/runtests.py
+++ b/
lib/as3/runtests.py
@@
-137,7
+137,7
@@
class TestBase:
def compile(self):
try: os.unlink("abc.swf");
except: pass
- ret,output = runcmd("./parser",[self.file],wait=60)
+ ret,output = runcmd("./parser",[self.file],wait=1)
self.compile_error = 0
self.compile_output = output
self.exit_status = 0
@@
-253,7
+253,7
@@
cache = Cache.load(".tests.cache")
cache.parse_args()
nr = 0
-nr = Suite(cache, "err").run(nr)
+#nr = Suite(cache, "err").run(nr)
nr = Suite(cache, "ok").run(nr)
cache.save(".tests.cache")