diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-06-16 19:03:26 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-06-17 08:36:12 +0300 |
commit | 7a70532dd8a6d5b58f6a57220aa51e3cdc20ec88 (patch) | |
tree | ddbcd778d546e4e0809162206ac101a87938e321 /gnu/tests | |
parent | bd5c61781c13611ed16686513980907c6ee34ae6 (diff) | |
download | guix-7a70532dd8a6d5b58f6a57220aa51e3cdc20ec88.tar.gz |
tests: libvirt-test: Give the libvirt service time to start.
* gnu/tests/virtualization.scm (run-libvirt-test): Sleep for 1 second after starting the libvirtd service but before running the tests against it. Change-Id: I4d17a42ff7f0f2decc12c8e33991259c330a78f4
Diffstat (limited to 'gnu/tests')
-rw-r--r-- | gnu/tests/virtualization.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/tests/virtualization.scm b/gnu/tests/virtualization.scm index c8b42eb1db..ed8d6b1c85 100644 --- a/gnu/tests/virtualization.scm +++ b/gnu/tests/virtualization.scm @@ -94,6 +94,9 @@ ((pid) (number? pid)))))) marionette)) + ;; Give the libvirtd service time to start up. + (sleep 1) + (test-eq "fetch version" 0 (marionette-eval |