cleanup
authorTony Mack <tmack@cs.princeton.edu>
Tue, 18 Mar 2008 21:14:38 +0000 (21:14 +0000)
committerTony Mack <tmack@cs.princeton.edu>
Tue, 18 Mar 2008 21:14:38 +0000 (21:14 +0000)
qaapi/qa/tests/Test.py

index 41188d7..7a6b496 100644 (file)
@@ -51,14 +51,7 @@ class Test:
 
        module = self.__class__.__module__.replace(".", os.sep)
        file = self.path + os.sep + module + ".py"
-       try:
-           result = self.call(*args, **kwds)
-       except NameError:
-           command = "%s %s" % (file, " ".join(args))
-           utils.header(command)
-           (stdout, stderr) = utils.popen(command)
-           print "".join(stdout)
-           result = None
+       result = self.call(*args, **kwds)
  
        return result