source: trunk/test/help_test.sh @ 2520

Last change on this file since 2520 was 2520, checked in by Peter, 12 years ago

use new functions (r2519) in tests and simplify code

  • 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: help_test.sh 2520 2011-07-11 15:55:27Z peter $
3#
4# Copyright (C) 2011 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 --help is detected also in presence of invalid arguments
23
24set -e
25
26. ./common_defs.sh || exit 99
27
28run ../../help.test 0 --nonsense --help
29test -s stderr && exit_fail
30grep 'Usage:' stdout || exit_fail
31
32run ../../help.test 0 -nonsense --help
33test -s stderr && exit_fail
34grep 'Usage:' stdout || exit_fail
35
36run ../../help.test 0 nonsense --help
37test -s stderr && exit_fail
38grep 'Usage:' stdout || exit_fail
39
40run ../../help.test 1 --help-me
41test -s stderr || exit_fail
42grep 'help.test:.*help-me' stderr || exit_fail
43
44exit_success
Note: See TracBrowser for help on using the repository browser.