aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* tests: use GPLv2+, not GPLv3Jim Meyering2010-05-121-1/+1
| | | | | | | | | | | | * tests/cpuset: Change from GPLv3 to GPLv2+ * tests/read-bufsiz: Likewise. * tests/read-non-seekable: Likewise. * tests/start: Likewise. * tests/undefine: Likewise. * tests/vcpupin: Likewise. * tests/virsh-all: Likewise. * tests/virsh-schedinfo: Likewise. * tests/virsh-synopsis: Likewise.
* tests: adjust copyrights on scripts: s/FSF/Red Hat/Jim Meyering2010-05-111-1/+1
| | | | | | | | | | | * tests/cpuset: Change copyright holder from FSF to Red Hat, Inc. * tests/read-bufsiz: Likewise. * tests/read-non-seekable: Likewise. * tests/start: Likewise. * tests/undefine: Likewise. * tests/vcpupin: Likewise. * tests/virsh-all: Likewise. * tests/virsh-synopsis: Likewise.
* qemu: Break out function to check if we can create/define/restoreCole Robinson2009-11-061-1/+4
| | | | Use this function in the qemu, uml, lxc, and test drivers.
* Fix up "make check"Chris Lalancette2009-10-071-7/+8
| | | | | | | | | | | | | | | | While running make check, I noticed that it was actually using the virsh binary from my system, in /usr/bin/virsh, and not the one that was just compiled. This is actually caused by a bug in Makefile.am, where we didn't update the PATH to include tools. While here, I also updated all of the scripts to properly define the srcdir, abs_top_srcdir, and abs_top_builddir environment variables. This is required if you want to be able to run the tests standalone (i.e. ./test instead of from make check). I've tested this on both RHEL-5 and Fedora-10 machines, and make check works on both, as does running the individual tests by hand. Signed-off-by: Chris Lalancette <clalance@redhat.com>
* Support domain events in test driverDaniel P. Berrange2009-01-201-0/+3
|
* Fix actual vs expected data comparison order to get correct diff +++/--- outputDaniel P. Berrange2009-01-201-1/+1
|
* virsh fails to read files larger than BUFSIZ bytesJim Meyering2008-06-191-0/+43
* src/util.c (fread_file_lim): Use VIR_REALLOC_N, not VIR_ALLOC_N. Bug introduced in 895d0fdf5bef358fafb91c672609190b3088097b. * tests/Makefile.am (test_scripts): Add read-bufsiz. * tests/read-bufsiz: New test for the above.