This website requires JavaScript.
Explore
Help
Register
Sign In
ShuriZma
/
xemu
mirror of
https://github.com/xemu-project/xemu.git
Watch
1
Star
0
Fork
You've already forked xemu
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
20d6cd47d0
xemu
/
tests
/
qemu-iotests-quick.sh
9 lines
96 B
Bash
Raw
Normal View
History
Unescape
Escape
make check: Add qemu-iotests subset Run the 'quick' group from qemu-iotests during 'make check'. Signed-off-by: Kevin Wolf <kwolf@redhat.com>
2012-03-08 11:29:00 +00:00
#!/bin/sh
iotests: Simplify qemu-iotests-quick.sh As of the "iotests: Allow out-of-tree run" series, the qemu-iotests may (and should) be run directly in the build tree and will then guess the binary paths themselves. Therefore, qemu-iotests-quick.sh does not need to (and should not) enter the source path anymore; also, it does not need to specify the binaries because "check" will guess them automatically. As a side-effect, tests using qemu may now be added to the quick group. Signed-off-by: Max Reitz <mreitz@redhat.com> Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
2014-06-27 20:47:46 +00:00
cd
tests/qemu-iotests
make check: Add qemu-iotests subset Run the 'quick' group from qemu-iotests during 'make check'. Signed-off-by: Kevin Wolf <kwolf@redhat.com>
2012-03-08 11:29:00 +00:00
ret
=
0
./check -T -nocache -qcow2 -g quick
||
ret
=
1
exit
$ret