summaryrefslogtreecommitdiff
path: root/buildscripts
diff options
context:
space:
mode:
authorRichard Kreuter <richard@10gen.com>2010-06-11 15:57:08 -0400
committerRichard Kreuter <richard@10gen.com>2010-06-11 15:57:08 -0400
commit5e6851767400dc4bb9da1aa93c7c00bbc331ed8c (patch)
treea02ab85d61c5e923a09e84e82a6b531e8bdfcc41 /buildscripts
parent5454fd7f46bc3b5d180525237dbf4f50118343ad (diff)
downloadmongo-5e6851767400dc4bb9da1aa93c7c00bbc331ed8c.tar.gz
Tweak smoke.py to avoid double-slashes (workaround for old boosts?).
Diffstat (limited to 'buildscripts')
-rwxr-xr-xbuildscripts/smoke.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildscripts/smoke.py b/buildscripts/smoke.py
index e82030e5df8..b80598cb915 100755
--- a/buildscripts/smoke.py
+++ b/buildscripts/smoke.py
@@ -250,7 +250,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