source: trunk/test/yat_config_test.sh @ 3188

Last change on this file since 3188 was 3188, checked in by Peter, 9 years ago

merge patch release 0.11.2

  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Id
File size: 1.3 KB
Line 
1#! /bin/sh
2# $Id: yat_config_test.sh 3188 2014-03-25 10:24:29Z peter $
3#
4# Copyright (C) 2011, 2012, 2013, 2014 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 basic features of yat-config
23
24required=
25
26set -e
27
28. test/init.sh || exit 99
29
30prog=${abs_top_builddir}/build_support/for_installation/yat-config
31
32for opt in --version --help; do
33run sh 0 $prog ${opt}
34test -s stderr && exit_fail
35test -s stdout || exit_fail
36done
37
38grep '^installed=yes' ${prog} || exit_fail
39
40run sh 1 $prog --nonsense
41grep 'yat-config:.*--nonsense' stderr || exit_fail
42grep 'for more information' stderr || exit_fail
43
44run sh 0 $prog --libs
45grep lgsl stdout || exit_fail
46
47run sh 0 $prog --libs-without-cblas
48grep lgsl stdout || exit_fail
49
50exit_success
Note: See TracBrowser for help on using the repository browser.