Bug 451547 – FAIL: runtests.sh
authorBehdad Esfahbod <behdad@gnome.org>
Wed, 27 Jun 2007 20:29:00 +0000 (20:29 +0000)
committerBehdad Esfahbod <behdad@src.gnome.org>
Wed, 27 Jun 2007 20:29:00 +0000 (20:29 +0000)
2007-06-27  Behdad Esfahbod  <behdad@gnome.org>

        Bug 451547 – FAIL: runtests.sh

        * tests/Makefile.am: Don't run tests if cross-compiling.
        (though cross-compiling tests work under scratchbox, so I'm not
        quite sure how good this change is.)

svn path=/trunk/; revision=2368

ChangeLog
tests/Makefile.am

index e77fc85..38c80d6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2007-06-27  Behdad Esfahbod  <behdad@gnome.org>
+
+       Bug 451547 – FAIL: runtests.sh
+
+       * tests/Makefile.am: Don't run tests if cross-compiling.
+       (though cross-compiling tests work under scratchbox, so I'm not
+       quite sure how good this change is.)
+
 2007-06-26  Richard Hult  <richard@imendio.com>
 
        * pango/pangoatsui.c: (_pango_atsui_font_set_atsu_font_id):
index d05667e..f1b24a4 100644 (file)
@@ -31,7 +31,11 @@ INCLUDES += -DHAVE_WIN32
 endif
 
 
+if CROSS_COMPILING
+TESTS=
+else
 TESTS=runtests.sh
+endif
 
 TESTS_ENVIRONMENT =                    \
    srcdir=$(srcdir)                    \