On Sat, Feb 25, 2012 at 01:42:42PM -0600, Anthony Liguori wrote: > This also includes a qtest wrapper script to make it easier to launch qtest > tests directly. > > Signed-off-by: Anthony Liguori <aligu...@us.ibm.com> > --- > scripts/qtest | 5 + > tests/Makefile | 2 + > tests/libqtest.c | 334 > ++++++++++++++++++++++++++++++++++++++++++++++++++++++ > tests/libqtest.h | 63 ++++++++++ > 4 files changed, 404 insertions(+), 0 deletions(-) > create mode 100644 scripts/qtest > create mode 100644 tests/libqtest.c > create mode 100644 tests/libqtest.h > > diff --git a/scripts/qtest b/scripts/qtest > new file mode 100644 > index 0000000..5cff3d4 > --- /dev/null > +++ b/scripts/qtest
The script is missing the executable bit. When trying to run 'make check' after applying this series, I get: Running 'tests/rtc-test' with qemu-system-x86_64... /bin/sh: line 3: /home/ehabkost/pessoal/proj/virt/qemu/scripts/qtest: Permission denied make: *** [check-qtest-x86_64] Error 126 -- Eduardo