From 9848a9cb4ea01f2ceecdb5cebc7ffa8a9bea59b6 Mon Sep 17 00:00:00 2001 From: Dan Crosta Date: Thu, 2 Feb 2012 16:44:26 -0500 Subject: [PATCH] roll back my previous change --- buildscripts/smoke.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/buildscripts/smoke.py b/buildscripts/smoke.py index 04c4924c00f..37fa655059c 100755 --- a/buildscripts/smoke.py +++ b/buildscripts/smoke.py @@ -158,10 +158,7 @@ class mongod(object): argv = ["python", "buildscripts/cleanbb.py", '--nokill', dir_name] else: argv = ["python", "buildscripts/cleanbb.py", dir_name] - returncode = call(argv) - if returncode != 0: - raise Exception('could not run %s (return code %d)' % (' '.join(argv), returncode)) - + call(argv) utils.ensureDir(dir_name) argv = [mongod_executable, "--port", str(self.port), "--dbpath", dir_name] if self.kwargs.get('small_oplog'):