source: trunk/test/yat_cpp_add_flag_test.sh @ 1910

Last change on this file since 1910 was 1910, checked in by Peter, 14 years ago

fixes #532

  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Id
File size: 2.0 KB
Line 
1#! /bin/sh
2# $Id: yat_cpp_add_flag_test.sh 1910 2009-04-23 17:26:26Z peter $
3#
4# Copyright (C) 2009 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# test that YAT_CPP_ADD_FLAG adds the passed flag and ignores standard
23# includes like `-I/usr/include' and `-I/usr/local/include'
24
25required="autoconf automake g++ yat_add_flag.m4 ax_cxxcpp_check_flag.m4"
26
27set -e
28
29. ./common_defs.sh || exit 1
30
31echo "Creating acinclude.m4"
32cat > acinclude.m4.tmp <<EOF
33YAT_CPP_ADD_FLAG([YAT_CPPFLAGS__], [-I/usr/include])
34YAT_CPP_ADD_FLAG([YAT_CPPFLAGS__], [-I/usr/local/include])
35YAT_CPP_ADD_FLAG([YAT_CPPFLAGS__], [-DHAVE_SOMETHING])
36YAT_CPP_ADD_FLAG([YAT_CPPFLAGS__], [-DHAVE_SOMETHING])
37AC_SUBST(YAT_CPPFLAGS__)
38EOF
39$move_if_change -v acinclude.m4.tmp acinclude.m4
40
41# bootstrapping
42if test -f Makefile; then 
43  :
44else
45  autoreconf -siv
46  ./configure CXX=g++
47fi
48
49echo "$me: running make Makefile"
50make Makefile
51
52grep 'YAT_CPPFLAGS__' Makefile
53
54if test `grep 'YAT_CPPFLAGS__.*HAVE_SOMETHING' Makefile | wc -l` = 1; then
55  echo "found HAVE_SOMETHING"
56else
57  echo "ERROR: found no HAVE_SOMETHING"
58  exit 1
59fi
60
61if test `grep 'YAT_CPPFLAGS__.*SOMETHING.*SOMETHING' Makefile|wc -l`=0; 
62then
63  :
64else
65  echo "ERROR: found double HAVE_SOMETHING"
66  exit 1
67fi
68
69if test `grep 'YAT_CPPFLAGS__.*usr/' Makefile | wc -l` = 0; then
70  echo "found no usr/"
71else
72  echo "ERROR: found usr/"
73  exit 1
74fi
75
76
77echo "Test is OK"
Note: See TracBrowser for help on using the repository browser.