Re: [Qemu-devel] [PATCH] tests: Fix ubuntu.i386 image initialization

2018-03-22 Thread Eric Blake
On 03/21/2018 10:47 PM, Fam Zheng wrote: The apt-get commands we run through ssh expect certain features of the tty, and refuses to work if /dev/null is used. It is ugly, but easy to satisfy. Actually, there is no reason to hide the output. It just makes things harder to diagnose. We can always

Re: [Qemu-devel] [PATCH] tests: Fix ubuntu.i386 image initialization

2018-03-22 Thread Philippe Mathieu-Daudé
On 03/22/2018 12:47 AM, Fam Zheng wrote: > The apt-get commands we run through ssh expect certain features of the > tty, and refuses to work if /dev/null is used. It is ugly, but easy to > satisfy. > > Actually, there is no reason to hide the output. It just makes things > harder to diagnose. We c

[Qemu-devel] [PATCH] tests: Fix ubuntu.i386 image initialization

2018-03-21 Thread Fam Zheng
The apt-get commands we run through ssh expect certain features of the tty, and refuses to work if /dev/null is used. It is ugly, but easy to satisfy. Actually, there is no reason to hide the output. It just makes things harder to diagnose. We can always redirect in the Makefile, so don't do it co