1 | #! /bin/sh |
---|
2 | # $Id: yat_config_test.sh 3114 2013-11-10 23:51:47Z peter $ |
---|
3 | # |
---|
4 | # Copyright (C) 2011, 2012, 2013 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 | |
---|
24 | required= |
---|
25 | |
---|
26 | set -e |
---|
27 | |
---|
28 | . test/init.sh || exit 99 |
---|
29 | |
---|
30 | prog=${abs_top_builddir}/build_support/for_installation/yat-config |
---|
31 | |
---|
32 | for opt in --version --help; do |
---|
33 | run sh 0 $prog ${opt} |
---|
34 | test -s stderr && exit_fail |
---|
35 | test -s stdout || exit_fail |
---|
36 | done |
---|
37 | |
---|
38 | grep '^installed=yes' ${prog} || exit_fail |
---|
39 | |
---|
40 | run sh 1 $prog --nonsense |
---|
41 | grep 'yat-config:.*--nonsense' stderr || exit_fail |
---|
42 | grep 'for more information' stderr || exit_fail |
---|
43 | |
---|
44 | exit_success |
---|