equal
deleted
inserted
replaced
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: |