Timeout running long script using adt-virt-qemu
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
autopkgtest (Ubuntu) |
Triaged
|
Low
|
Unassigned |
Bug Description
When using adt-virt-qemu to run a script that is larger than ~4215 bytes on a qemu image, the script fails to start execution and a timeout occurs.
This behaviour was observed when attempting to unpack a large list of deb files when running the qemu with ro-apt setup-command. A full test log is shown at [1].
For smaller scripts it works fine. But when the script size is about 4215 bytes or more it will start to timeout and fail. I've tried bulking out a smaller script with comment lines to confirm the problem is related to the size of the script, rather than the commands in the script. I've also checked that the number of bytes returned by the socket.send() at [2] is correct to confirm it is sending the whole script.
Simple steps to reproduce:
$ python -c 'print "echo " * 1000' > /tmp/scr
$ autopkgtest -d --setup-commands /tmp/scr tests/testpkg-
[1] http://
[2] https:/
Changed in autopkgtest (Ubuntu): | |
status: | New → Triaged |
importance: | Undecided → Low |
Attaching strace log extract from the qemu which shows the logs from the autopkgtest sh process running on ttyS1: http:// pastebin. ubuntu. com/23564079/
This shows the commands to apt-get download the list of deb files, followed by command to extract each one. At this point it hangs.