diff options
author | Behdad Esfahbod <behdad@gnome.org> | 2007-06-27 20:29:00 +0000 |
---|---|---|
committer | Behdad Esfahbod <behdad@src.gnome.org> | 2007-06-27 20:29:00 +0000 |
commit | 95a704403db167500f487ccb56d7e11771110928 (patch) | |
tree | dbc1c818f89a22419256564ab8a42fe2bcc6181a | |
parent | 5bc1e9b02dde55f3405e55f7e9df13e5081c7ffd (diff) | |
download | pango-95a704403db167500f487ccb56d7e11771110928.tar.gz |
Bug 451547 – FAIL: runtests.sh
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
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | tests/Makefile.am | 4 |
2 files changed, 12 insertions, 0 deletions
@@ -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): diff --git a/tests/Makefile.am b/tests/Makefile.am index d05667e3..f1b24a42 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) \ |