##// END OF EJS Templates
runtest: do not start testing when there is no test
Simon Heimberg -
r8592:cc22b416 default
parent child Browse files
Show More
@@ -688,6 +688,9 b' def main():'
688 ('.' not in test or test.endswith('.py') or
688 ('.' not in test or test.endswith('.py') or
689 test.endswith('.bat'))):
689 test.endswith('.bat'))):
690 tests.append(test)
690 tests.append(test)
691 if not tests:
692 print "# Ran 0 tests, 0 skipped, 0 failed."
693 return
691
694
692 vlog("# Using TESTDIR", TESTDIR)
695 vlog("# Using TESTDIR", TESTDIR)
693 vlog("# Using HGTMP", HGTMP)
696 vlog("# Using HGTMP", HGTMP)
General Comments 0
You need to be logged in to leave comments. Login now