Show More
@@ -251,9 +251,7 b' try:' | |||||
251 | if len(args) == 0: |
|
251 | if len(args) == 0: | |
252 | args = os.listdir(".") |
|
252 | args = os.listdir(".") | |
253 | for test in args: |
|
253 | for test in args: | |
254 | if test.startswith("test-"): |
|
254 | if test.startswith("test-") and not '~' in test and not '.' in test: | |
255 | if '~' in test or re.search(r'\.(out|err)$', test): |
|
|||
256 | continue |
|
|||
257 | if not run_one(test): |
|
255 | if not run_one(test): | |
258 | failed += 1 |
|
256 | failed += 1 | |
259 | tests += 1 |
|
257 | tests += 1 |
General Comments 0
You need to be logged in to leave comments.
Login now