儲存庫 vbox 的更動 82951
- 時間撮記:
- 2020-2-1 下午02:00:04 (5 年 以前)
- svn:sync-xref-src-repo-rev:
- 135955
- 位置:
- trunk/src/VBox/ValidationKit
- 檔案:
-
- 修改 3 筆資料
圖例:
- 未更動
- 新增
- 刪除
-
trunk/src/VBox/ValidationKit/testdriver/vboxtestvms.py
r81435 r82951 331 331 self.acCpusSup = [1]; 332 332 elif self.aInfo is not None: 333 self.acCpusSup = [i for i in range(self.aInfo[g_iMinCpu], self.aInfo[g_iMaxCpu]) ];333 self.acCpusSup = list(range(self.aInfo[g_iMinCpu], self.aInfo[g_iMaxCpu])); 334 334 else: 335 335 self.acCpusSup = [1]; … … 1076 1076 self.acCpusSup = [1]; 1077 1077 elif self.aInfo is not None: 1078 self.acCpusSup = [i for i in range(self.aInfo[g_iMinCpu], self.aInfo[g_iMaxCpu]) ];1078 self.acCpusSup = list(range(self.aInfo[g_iMinCpu], self.aInfo[g_iMaxCpu])); 1079 1079 else: 1080 1080 self.acCpusSup = [1]; -
trunk/src/VBox/ValidationKit/tests/additions/tdAddBasic1.py
r79087 r82951 322 322 323 323 def testLinuxInstallAdditions(self, oSession, oTxsSession, oTestVm): 324 oSession= oSession;325 oTestVm= oTestVm;324 _ = oSession; 325 _ = oTestVm; 326 326 327 327 fRc = False; -
trunk/src/VBox/ValidationKit/tests/storage/tdStorageBenchmark1.py
r82623 r82951 1281 1281 fRc = self.mountValidationKitIso(oExecVm); 1282 1282 if fRc: 1283 oGstDiskCfg = storagecfg.DiskCfg('linux', storagecfg.g_ksDiskCfgList, \1283 oGstDiskCfg = storagecfg.DiskCfg('linux', storagecfg.g_ksDiskCfgList, 1284 1284 self.getGuestDisk(oSession, oTxsSession, eStorageController)); 1285 1285 oStorCfgVm = storagecfg.StorageCfg(oExecVm, oGstDiskCfg); … … 1291 1291 reporter.log('Prepared storage on %s try' % (iTry + 1,)); 1292 1292 break; 1293 else: 1294 iTry = iTry + 1; 1295 self.sleep(5); 1293 iTry = iTry + 1; 1294 self.sleep(5); 1296 1295 1297 1296 if sMountPoint is not None: 1298 1297 # 3 hours max (Benchmark and QED takes a lot of time) 1299 self.testBenchmark('linux', sIoTest, sMountPoint, oExecVm, dTestSet, \ 1300 cMsTimeout = 3 * 3600 * 1000); 1298 self.testBenchmark('linux', sIoTest, sMountPoint, oExecVm, dTestSet, cMsTimeout = 3 * 3600 * 1000); 1301 1299 self.cleanupStorage(oStorCfgVm); 1302 1300 else:
注意:
瀏覽 TracChangeset
來幫助您使用更動檢視器