summaryrefslogtreecommitdiffstats
path: root/regressions/test-qemudie-midcommand.sh
Commit message (Collapse)AuthorAgeFilesLines
* regressions: Don't print misleading 'Expect error ...' lines.Richard Jones2010-07-221-1/+0
| | | | | | | | | | | | | Some tests in the regressions directory deliberately print error messages. As long as they still PASS, this is OK. However these tests also printed some misleading messages about what error to expect. Since error messages were slightly different across distros, these messages were not accurate. Therefore remove these messages, and replace with a general message before all tests telling users not to worry about errors from the tests as long as the tests don't fail.
* fish: Add -N option for making prepared disk images.Richard Jones2010-04-221-6/+3
| | | | | | | | | | | | | | | | | Previously you might have typed: $ guestfish ><fs> alloc test1.img 100M ><fs> run ><fs> part-disk /dev/sda mbr ><fs> mkfs ext4 /dev/sda1 now you can do the same with: $ guestfish -N fs:ext4 Some tests have also been updated to use this new functionality.
* Debian: Use /bin/bash as the shell for regression test scripts.Richard Jones2009-11-041-1/+1
| | | | | | | | | | /bin/sh on Debian is a minimal shell called 'dash' which doesn't support some features we need such as the particular 'function' syntax used by regressions/test-stringlist.sh, and therefore this script was failing on Debian. Change all of these scripts to use #!/bin/bash explicitly to avoid these sorts of problems.
* Introduce regression tests for various qemu failures.Richard Jones2009-07-061-0/+41
Test failure of qemu and recovery of the library: - mid-command - between commands - during launch [test not working yet] - explicitly killed by guestfs_kill_subprocess Also this patch cleans up the other tests in this directory and disables the long-winded test-bootbootboot test.