Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Tu Dinh committed Jan 14, 2025
1 parent 1bc1aab commit ac63945
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/guest-tools/win/other_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def install_other_drivers(vm: VM, other_tools_iso_name: str, param: dict[str, An
install_cmd += f"-DriverPath '{package_path}' "
install_cmd += ">C:\\othertools.log"
vm.start_background_powershell(install_cmd)
wait_for(vm.is_halted, "Shutdown VM")
wait_for(vm.is_halted, "Shutdown VM", timeout_secs=300)

vm.eject_cd()
vm.start()
Expand Down
2 changes: 1 addition & 1 deletion tests/guest-tools/win/test_xenclean.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

def run_xenclean(vm: VM, guest_tools_iso: dict[str, Any]):
vm.insert_cd(guest_tools_iso["name"])
wait_for(lambda: vm.file_exists("D:/", regular_file=False))
wait_for(lambda: vm.file_exists("D:/", regular_file=False), timeout_secs=600)

logging.info("Run XenClean")
xenclean_path = PureWindowsPath("D:\\") / guest_tools_iso["xenclean_path"]
Expand Down

0 comments on commit ac63945

Please sign in to comment.