From 95a704403db167500f487ccb56d7e11771110928 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Wed, 27 Jun 2007 20:29:00 +0000 Subject: [PATCH] =?utf8?q?Bug=20451547=20=E2=80=93=20FAIL:=20runtests.sh?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 2007-06-27 Behdad Esfahbod 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 | 8 ++++++++ tests/Makefile.am | 4 ++++ 2 files changed, 12 insertions(+) diff --git a/ChangeLog b/ChangeLog index e77fc85..38c80d6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2007-06-27 Behdad Esfahbod + + 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 * pango/pangoatsui.c: (_pango_atsui_font_set_atsu_font_id): diff --git a/tests/Makefile.am b/tests/Makefile.am index d05667e..f1b24a4 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -31,7 +31,11 @@ INCLUDES += -DHAVE_WIN32 endif +if CROSS_COMPILING +TESTS= +else TESTS=runtests.sh +endif TESTS_ENVIRONMENT = \ srcdir=$(srcdir) \ -- 2.7.4