X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Fas3%2Ftest;h=c0da7a02393f1e9aa977615caa5cb522a7476d75;hb=b8aa0577aae67db4da5221459102202febc5c103;hp=02063455e4c659c51c6f56046861d500c86cfd26;hpb=b981dc70e7f97f7462a9bcfac0e3ad33ce70b512;p=swftools.git diff --git a/lib/as3/test b/lib/as3/test old mode 100644 new mode 100755 index 0206345..c0da7a0 --- a/lib/as3/test +++ b/lib/as3/test @@ -28,6 +28,11 @@ import marshal import select from optparse import OptionParser +CMD_ARGS=[] +CMD = "./parser" +#CMD="as3compile" +CMD_ARGS=["-o","abc.swf"] + def check(s): row = None ok = 0 @@ -42,11 +47,16 @@ def check(s): if "/" not in line: return 0 i = line.index('/') - nr,len = int(line[3:i]),int(line[i+1:]) - if nr<1 or nr>len: + try: + nr,l = int(line[3:i]),int(line[i+1:]) + except ValueError: + return 0 + if nr<1 or nr>l: return 0 if not row: - row = [0]*len + row = [0]*l + elif l != len(row): + return 0 if row[nr-1]: return 0 row[nr-1] = 1 @@ -70,13 +80,20 @@ def runcmd(cmd,args,wait): output += os.read(fi, 8192) if "[exit]" in output: break + if "== by" in output: + ret = -33 + break ret = p.poll() if ret is not None: + if cmd == "valgrind": + # valgrind never returns true + ret = 0 break time.sleep(0.1) else: os.kill(p.pid, 9) os.system("killall -9 %s >/dev/null 2>/dev/null" % cmd) + ret = -1 fo.close() if fi in select.select([fi],[],[], 0.01)[0]: @@ -87,38 +104,59 @@ def runcmd(cmd,args,wait): class Cache: def __init__(self, filename): + self.filename = filename self.filename_milestone = filename+"_milestone" try: - self.filename2status = marshal.load(open(filename, "rb")) + self.filename2status = marshal.load(open(self.filename, "rb")) except IOError: self.filename2status = {} try: - self.milestone = marshal.load(open(filename, "rb")) + self.milestone = marshal.load(open(self.filename_milestone, "rb")) except IOError: - self.milstone = {} + self.milestone = {} def parse_args(self): parser = OptionParser() parser.add_option("-d", "--diff", dest="diff", help="Only run tests that failed the last time",action="store_true") - parser.add_option("-a", "--all", dest="all", help="Run all tests (also tests expected fail)",action="store_true") + parser.add_option("-a", "--all", dest="all", help="Run all tests (also tests expected to fail)",action="store_true") parser.add_option("-t", "--tag", dest="tag", help="Mark the current pass/fail statistic as milestone",action="store_true") + parser.add_option("-m", "--valgrind", dest="valgrind", help="Run compiler through valgrind",action="store_true") (options, args) = parser.parse_args() + + if args and args[0]=="add": + self.all = 1 + self.tag = 1 + self.milestone[args[1]] = "ok" + self.filename2status = self.milestone + self.save() + sys.exit(0) + self.__dict__.update(options.__dict__) self.runtime = 1 if self.tag: self.all = 1 self.runtime = 5 # allow more time if we're tagging this state + + if self.valgrind: + global CMD,CMD_ARGS + CMD_ARGS = [CMD] + CMD_ARGS + CMD = "valgrind" + self.runtime = 20 # allow even more time for valgrind self.checknum=-1 + self.checkfile=None if len(args): - self.checknum = int(args[0]) + try: + self.checknum = int(args[0]) + except ValueError: + self.checkfile = args[0] @staticmethod def load(filename): return Cache(filename) - def save(self, filename): - fi = open(filename, "wb") + def save(self): + fi = open(self.filename, "wb") marshal.dump(self.filename2status, fi) fi.close() if self.tag: @@ -128,14 +166,18 @@ class Cache: fi.close() def highlight(self, nr, filename): + if self.checkfile and filename==self.checkfile: + return 1 return self.checknum==nr def skip_file(self, nr, filename): if self.checknum>=0 and nr!=self.checknum: return 1 - if not self.all and self.milestone[filename]!="ok": + if self.checkfile and filename!=self.checkfile: + return 1 + if not self.all and self.milestone.get(filename,"new")!="ok": return 1 - if self.diff and self.filename2status[filename]=="ok": + if self.diff and self.filename2status(filename,"new")=="ok": return 1 return 0 @@ -156,7 +198,7 @@ class TestBase: def compile(self): try: os.unlink("abc.swf"); except: pass - ret,output = runcmd("./parser",[self.file],wait=cache.runtime) + ret,output = runcmd(CMD,CMD_ARGS+[self.file],wait=cache.runtime) self.compile_error = 0 self.compile_output = output self.exit_status = 0 @@ -275,4 +317,4 @@ nr = 0 nr = Suite(cache, "err").run(nr) nr = Suite(cache, "ok").run(nr) -cache.save(".tests.cache") +cache.save()