diff options
| author | Luiz Capitulino <lcapitulino@redhat.com> | 2011-11-21 14:00:37 -0200 |
|---|---|---|
| committer | Luiz Capitulino <lcapitulino@redhat.com> | 2011-12-06 11:40:00 -0200 |
| commit | 4ec0263e2ccad312cbaff1aa12ace1721113c2f1 (patch) | |
| tree | 27b4cb7c55ead6f8e823c7a291b54333fd46a7a5 | |
| parent | 1c1d46cc0bb66394feba2e37a6b0196021e8d736 (diff) | |
| download | focaccia-qemu-4ec0263e2ccad312cbaff1aa12ace1721113c2f1.tar.gz focaccia-qemu-4ec0263e2ccad312cbaff1aa12ace1721113c2f1.zip | |
configure: Don't mix glib and libcheck tests
test-coroutine is listed as a libcheck test in the 'checks' variable. This is not right because 'make check' won't run test-coroutine if libcheck tests are not enabled (either because libcheck isn't detected or because --disable-check-utests is passed). Tests using the glib test framework are independent from libcheck and afaik are always present (although having a configure switch to disable them is probably worth it). Untangle test-coroutine from the libcheck tests by introducing the 'test_progs' variable and using it to generate the test list used by 'make check'. Reviewed-by: Andreas Färber <afaerber@suse.de> Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
| -rwxr-xr-x | configure | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/configure b/configure index 5fbd81285f..d88288bf36 100755 --- a/configure +++ b/configure @@ -2743,8 +2743,9 @@ if test "$softmmu" = yes ; then fi if [ "$check_utests" = "yes" ]; then checks="check-qint check-qstring check-qdict check-qlist" - checks="check-qfloat check-qjson test-coroutine $checks" + checks="check-qfloat check-qjson $checks" fi + test_progs="$checks test-coroutine" fi fi @@ -3230,7 +3231,7 @@ if test "$trace_default" = "yes"; then fi echo "TOOLS=$tools" >> $config_host_mak -echo "CHECKS=$checks" >> $config_host_mak +echo "CHECKS=$test_progs" >> $config_host_mak echo "ROMS=$roms" >> $config_host_mak echo "MAKE=$make" >> $config_host_mak echo "INSTALL=$install" >> $config_host_mak |