source: trunk/test/yat_m4_test.sh @ 2225

Last change on this file since 2225 was 2225, checked in by Peter, 13 years ago

fixes #613. Restructure tests to have a configure.ac with no included acinclude but include needed code in configure.ac instead. This makes it easier for autotools to give a useful diagnosis when autoconf is too old. The cache in the test were also removed (was never a good idea) so now tests are run from scratch every time, in fact, old testdir is removed before creating input files (such as configure.ac). This makes the tests a bit more time consuming, but they are also more accurate (reported failures have often been problem with the cache).

  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Id
File size: 1.5 KB
Line 
1#! /bin/sh
2# $Id: yat_m4_test.sh 2225 2010-03-22 22:29:41Z peter $
3#
4# Copyright (C) 2009, 2010 Peter Johansson
5#
6# This file is part of the yat library, http://dev.thep.lu.se/yat
7#
8# The yat library is free software; you can redistribute it
9# and/or modify it under the terms of the GNU General Public License as
10# published by the Free Software Foundation; either version 3 of the
11# License, or (at your option) any later version.
12#
13# The yat library is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16# General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License
19# along with yat. If not, see <http://www.gnu.org/licenses/>.
20
21
22# build a `hello world' project that uses macro YAT_CHECK_YAT in its
23# configure.ac. Test if the macro works against an uninstalled yat.
24
25required="autoconf automake libtool yat.m4"
26
27set -e
28
29. ./common_defs.sh || exit 1
30
31cat >> configure.ac <<EOF
32YAT_FIND_YAT
33CXX=\`\$yat_config --cxx\`
34YAT_CHECK_VERSION([0.5.99],,
35                  [AC_MSG_ERROR([could not find required version of yat])])
36YAT_CHECK_HEADER(,[AC_MSG_ERROR([could not find yat headers])])
37YAT_LDADD=\`\$yat_config --link-libtool\`
38AC_SUBST(YAT_LDADD)
39AC_CONFIG_FILES([Makefile])
40AC_OUTPUT
41EOF
42
43bootstrap
44./configure --with-yat=$abs_top_builddir/build_support/yat-config
45
46# we always wanna relink
47rm -f hello
48echo "running make"
49make
50echo "running ./hello"
51./hello || exit 1
52
53echo "Test is OK"
Note: See TracBrowser for help on using the repository browser.