diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2016-06-06 16:46:53 +0200 |
---|---|---|
committer | Fam Zheng <famz@redhat.com> | 2016-06-08 15:19:30 +0800 |
commit | 53735f0b823d655f8e29e43d4ed6080970c87019 (patch) | |
tree | f08af6a383e8e818a252dae956320f7d021f0ce3 /tests | |
parent | 34c98c54c3c8b9e988feaa15062e40b0b11b72eb (diff) |
tests/docker: make test-full build all targets, not none
Fix common.rc to avoid passing an empty --target-list= option to configure.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Message-id: 1465224417-141321-3-git-send-email-pbonzini@redhat.com
Signed-off-by: Fam Zheng <famz@redhat.com>
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/docker/common.rc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/docker/common.rc b/tests/docker/common.rc index c493eebd45..77069e1285 100755 --- a/tests/docker/common.rc +++ b/tests/docker/common.rc @@ -24,7 +24,7 @@ requires() build_qemu() { $QEMU_SRC/configure \ - --target-list="${TARGET_LIST}" \ + ${TARGET_LIST:+"--target-list=${TARGET_LIST}"} \ --prefix="$PWD/install" \ $EXTRA_CONFIGURE_OPTS \ "$@" |