update logging
authorTony Mack <tmack@cs.princeton.edu>
Tue, 13 May 2008 01:27:38 +0000 (01:27 +0000)
committerTony Mack <tmack@cs.princeton.edu>
Tue, 13 May 2008 01:27:38 +0000 (01:27 +0000)
qaapi/qa/tests/vserver_create.py
qaapi/qa/tests/vserver_delete.py

index 931f459..2920c51 100644 (file)
@@ -13,14 +13,14 @@ class vserver_create(Test):
        
 
        if self.config.verbose:
-           utils.header("Creating vserver: %(name)s" % locals()) 
+           utils.header("Creating vserver: %(name)s" % locals(), logfile = self.config.logfile
        # Create vserver
        vcreate_script = self.config.vserver_scripts_path + 'vtest-nightly.sh'
        command = "%(vcreate_script)s -b %(name)s -f %(fcdistro)s -m %(mailto)s -w /tmp/" % locals()
-       (status, output) = utils.commands(command)
+       (status, output) = utils.commands(command, logfile = self.config.logfile)
 
        # Start vserver
        command = "vserver %(name)s start" % locals()
-       (status, output) = utils.commands(command)      
+       (status, output) = utils.commands(command, logfile = self.config.logfile)       
 
        return 1 
index 344ec63..655ce43 100644 (file)
@@ -9,8 +9,8 @@ class vserver_delete(Test):
     """
 
     def call(self, name):
-        (status, output) = utils.commands("vserver %(name)s stop" % locals(), False)
-        (status, output) = utils.commands("vserver %(name)s delete" % locals())
+        (status, output) = utils.commands("vserver %(name)s stop" % locals(), False, logfile = self.config.logfile)
+        (status, output) = utils.commands("vserver %(name)s delete" % locals(), logfile = self.config.logfile)
 
         return 1