0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-30 17:10:48 +01:00

Another double-slash tweak in smoke.py.

This commit is contained in:
Richard Kreuter 2010-06-11 18:39:53 -04:00
parent 04529a1acf
commit 73b55af029

View File

@ -348,7 +348,7 @@ def expandSuites(suites):
raise Exception('unknown test suite %s' % suite)
if globstr:
globstr = mongoRepo+('jstests/' if globstr.endswith('.js') else '/')+globstr
globstr = mongoRepo+('jstests/' if globstr.endswith('.js') else '')+globstr
tests += [(path, usedb) for path in glob.glob(globstr)]
return tests