tests/run-tests.py
branchstable
changeset 1234 750a0ed6f380
parent 1233 e15c19e34344
child 1235 8fd26ac1deca
equal deleted inserted replaced
1233:e15c19e34344 1234:750a0ed6f380
   879 
   879 
   880     testpath = os.path.join(TESTDIR, test)
   880     testpath = os.path.join(TESTDIR, test)
   881     err = os.path.join(TESTDIR, test + ".err")
   881     err = os.path.join(TESTDIR, test + ".err")
   882     lctest = test.lower()
   882     lctest = test.lower()
   883 
   883 
   884     if not os.path.exists(test):
   884     if not os.path.exists(testpath):
   885             skip("doesn't exist")
   885             skip("doesn't exist")
   886             return None
   886             return None
   887 
   887 
   888     if not (options.whitelisted and test in options.whitelisted):
   888     if not (options.whitelisted and test in options.whitelisted):
   889         if options.blacklist and test in options.blacklist:
   889         if options.blacklist and test in options.blacklist: