儲存庫 vbox 的更動 65310
- 時間撮記:
- 2017-1-16 上午09:44:56 (8 年 以前)
- 檔案:
-
- 修改 1 筆資料
圖例:
- 未更動
- 新增
- 刪除
-
trunk/src/VBox/ValidationKit/testdriver/vbox.py
r64431 r65310 1740 1740 Terminate VBoxSVC if we've got a pid file. 1741 1741 """ 1742 self._killVBoxSVCByPidFile('%s/VBoxSVC.pid' % (self.sScratchPath,)); 1743 return base.TestDriver.actionAbort(self); 1742 # 1743 # Take default action first, then kill VBoxSVC. The other way around 1744 # is problematic since the testscript would continue running and possibly 1745 # trigger a new VBoxSVC to start. 1746 # 1747 fRc1 = base.TestDriver.actionAbort(self); 1748 fRc2 = self._killVBoxSVCByPidFile('%s/VBoxSVC.pid' % (self.sScratchPath,)); 1749 return fRc1 is True and fRc2 is True; 1744 1750 1745 1751 def onExit(self, iRc):
注意:
瀏覽 TracChangeset
來幫助您使用更動檢視器