diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2018-08-20 13:48:11 +0100 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2018-08-20 17:07:53 +0100 |
commit | 44b69d503797cd2b4acd005327923894e69c58ea (patch) | |
tree | 30acd74f669bca5bdfbfc0c39f3e9067d842bc57 /tests/vm/openbsd | |
parent | c8090972fa85b197411b530ddf81a2867379406c (diff) |
tests/vm: Clean out old working directories on build
When we do a build inside one of the BSD VMs, first
delete any stale old build directories from the VM's
/var/tmp. This prevents the VM from running out of
disk space after it has been used for a dozen or
so builds.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Fam Zheng <famz@redhat.com>
Message-id: 20180820124811.7982-1-peter.maydell@linaro.org
Diffstat (limited to 'tests/vm/openbsd')
-rwxr-xr-x | tests/vm/openbsd | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/vm/openbsd b/tests/vm/openbsd index 98edfbca4b..52500ee52b 100755 --- a/tests/vm/openbsd +++ b/tests/vm/openbsd @@ -20,6 +20,7 @@ class OpenBSDVM(basevm.BaseVM): name = "openbsd" BUILD_SCRIPT = """ set -e; + rm -rf /var/tmp/qemu-test.* cd $(mktemp -d /var/tmp/qemu-test.XXXXXX); tar -xf /dev/rsd1c; ./configure --cc=x86_64-unknown-openbsd6.1-gcc-4.9.4 --python=python2.7 {configure_opts}; |