svn commit: r346330 - head/tools/boot

Ed Maste emaste at FreeBSD.org
Tue Sep 3 14:07:54 UTC 2019


Author: emaste
Date: Wed Apr 17 19:24:41 2019
New Revision: 346330
URL: https://svnweb.freebsd.org/changeset/base/346330

Log:
  Put QEMU CI smoke test boot log in /tmp if TMPDIR not set
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/tools/boot/ci-qemu-test.sh

Modified: head/tools/boot/ci-qemu-test.sh
==============================================================================
--- head/tools/boot/ci-qemu-test.sh	Wed Apr 17 19:16:26 2019	(r346329)
+++ head/tools/boot/ci-qemu-test.sh	Wed Apr 17 19:24:41 2019	(r346330)
@@ -95,7 +95,7 @@ trap tempdir_cleanup EXIT SIGINT SIGHUP SIGTERM SIGQUI
 ( cd ${SRCTOP} && tempdir_setup )
 
 # And, boot in QEMU.
-: ${BOOTLOG:=${TMPDIR}/ci-qemu-test-boot.log}
+: ${BOOTLOG:=${TMPDIR:-/tmp}/ci-qemu-test-boot.log}
 timeout 300 \
     qemu-system-x86_64 -m 256M -bios ${OVMF} \
         -serial stdio -vga none -nographic -monitor none \




More information about the svn-src-all mailing list