diff options
-rw-r--r-- | tests/extra/Makefile.am | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/extra/Makefile.am b/tests/extra/Makefile.am index dfdffd18..b807048b 100644 --- a/tests/extra/Makefile.am +++ b/tests/extra/Makefile.am @@ -64,8 +64,13 @@ export LIBVIRT_DEFAULT_URI = \ qemu+unix:///system?socket=/var/run/libvirt/libvirt-sock-ro # Choose guests at random on each run. +# +# 'export LIBVIRT_DEFAULT_URI' above doesn't appear to have an effect +# for $(shell ...) commands, so we have to redefine LIBVIRT_DEFAULT_URI here. random_guests := \ - $(shell $(abs_top_builddir)/run $(srcdir)/pick-guests.pl 5) + $(shell \ + LIBVIRT_DEFAULT_URI='qemu+unix:///system?socket=/var/run/libvirt/libvirt-sock-ro' \ + $(abs_top_builddir)/run $(srcdir)/pick-guests.pl 5) extra-tests: \ test-guests \ |