From a8db25f48b04c140695e77e6c59ee64864e67902 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 3 Jun 2004 14:38:07 +0000 Subject: [PATCH] the test targets won't invoke the test suite if curl is built cross-compiled. Pointed out by Chris Gaukroger. --- tests/Makefile.am | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/tests/Makefile.am b/tests/Makefile.am index 026e29b01..1306e210e 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -33,14 +33,26 @@ CLEANFILES = .http.pid .https.pid .ftp.pid .ftps.pid curl: @cd $(top_builddir) && $(MAKE) +if CROSSCOMPILING +TEST = @echo "NOTICE: we can't run the tests when cross-compiling!" +TEST_Q = $(TEST) +TEST_F = $(TEST) +TEST_T = $(TEST) +else # if not cross-compiling: +TEST = srcdir=$(srcdir) $(PERL) $(PERLFLAGS) $(srcdir)/runtests.pl +TEST_Q = $(TEST) -s -a +TEST_F = $(TEST) -a -p +TEST_T = $(TEST) -t +endif + test: all - srcdir=$(srcdir) $(PERL) $(PERLFLAGS) $(srcdir)/runtests.pl + $(TEST) quiet-test: all - srcdir=$(srcdir) $(PERL) $(PERLFLAGS) $(srcdir)/runtests.pl -s -a + $(TEST_Q) full-test: all - srcdir=$(srcdir) $(PERL) $(PERLFLAGS) $(srcdir)/runtests.pl -a -p + $(TEST_F) torture-test: all - srcdir=$(srcdir) $(PERL) $(PERLFLAGS) $(srcdir)/runtests.pl -t + $(TEST_T)