3
0
mirror of https://github.com/hyprwm/Hyprland.git synced 2026-08-18 11:02:10 +00:00

nix/tests: fix deprecation warning

This commit is contained in:
Mihai Fufezan
2026-06-27 18:06:17 +03:00
parent d251379236
commit f52070ee8c

View File

@ -97,11 +97,11 @@ in
# Copy logs to host
machine.execute('cp "$(find /tmp/hypr -name *.log | head -1)" /tmp/hyprlog')
machine.execute(f'echo {exit_status} > /tmp/exit_status')
machine.copy_from_vm("/tmp/gtestslog")
machine.copy_from_vm("/tmp/testerlog")
machine.copy_from_vm("/tmp/hyprlog")
machine.copy_from_vm("/tmp/exit_status")
machine.copy_from_vm("/tmp/exit_status_gtests")
machine.copy_from_machine("/tmp/gtestslog")
machine.copy_from_machine("/tmp/testerlog")
machine.copy_from_machine("/tmp/hyprlog")
machine.copy_from_machine("/tmp/exit_status")
machine.copy_from_machine("/tmp/exit_status_gtests")
# Finally - shutdown
machine.shutdown()