summaryrefslogtreecommitdiff
path: root/getdefs/test/cfg.test
blob: 1fb6fb091a6db5c71781ced3b29d29cfa1d6027d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
#! /bin/sh
#  -*- Mode: Shell-script -*-
# cfg.test --- test config file processing
#
## Time-stamp:      "2011-02-02 12:03:18 bkorb"
## Author:          Bruce Korb <bkorb@gnu.org>
#
## This file is part of AutoGen.
## AutoGen Copyright (c) 1992-2012 by Bruce Korb - all rights reserved
##
## AutoGen is free software: you can redistribute it and/or modify it
## under the terms of the GNU General Public License as published by the
## Free Software Foundation, either version 3 of the License, or
## (at your option) any later version.
##
## AutoGen is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
## See the GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License along
## with this program.  If not, see <http://www.gnu.org/licenses/>.

if test -z "$srcdir"; then
    srcdir=`echo "$0" | ${SED} 's,[^/]*$,,'`
    test -z "$srcdir" && srcdir=.
    test "$srcdir" = "$0" && srcdir=.
    test "${VERBOSE+set}" != set && VERBOSE=1
fi
. $srcdir/defs

# Create the files we need in the test environment
cat > ${testname}.c <<-	_EOSource_

	/*=* global
	 *
	 *  test:  subblock
	 *  doc:  we want to see
	 *        just what happens
	=*/

	/*=gfunc in_p
	 *
	 * exparg: test-string   , string to look for
	           + arg-name    + arg-desc                + arg-opt + arg-list +
	 * exparg: @ string-list @ list of strings to check,,       @@ list
	 *
	 * opt:  1
	 * doc:
	 *      Return SCM_BOOL_T if the first argument is duplicated
	 *      in the second (list) argument.
	=*/
	    SCM
	ag_scm_in_p( SCM obj, SCM list )
	{
	}
	_EOSource_

cat > ${testname}.cfg <<-	_EOCfg_
	output          ${testname}.out
	common-assign   stumble = grumble
	assign          mumble = stumble ; mumble = grumble
	template        test${testname}
	subblock        exparg=arg_name,arg_desc,arg_optional,arg_list
	_EOCfg_

cat > ${testname}.test <<- _EOTestOut_
	/*  -*- buffer-read-only: t -*- vi: set ro:
	 *
	 *
	 *  DO NOT EDIT THIS FILE   (cfg.out)
	 *
	 *  It has been extracted by getdefs from the following files:
	 *
	 *      cfg.c
	 */
	autogen definitions testcfg;
	mumble = stumble ; mumble = grumble;


	/* GLOBALDEFS */

	#line 2 "cfg.c"
	    test = 'subblock';
	    doc = 'we want to see
	just what happens';


	#line 9 "cfg.c"
	gfunc = {
	    name    = 'in_p';
	    exparg = {
	        arg_name = 'test-string';
	        arg_desc = 'string to look for';
	    };
	    exparg = {
	        arg_name = 'string-list';
	        arg_desc = 'list of strings to check,,';
	        arg_list = 'list';
	    };
	    opt = '1';
	    doc =
	'Return SCM_BOOL_T if the first argument is duplicated
	in the second (list) argument.';
	    stumble = grumble;
	};
	_EOTestOut_

set -x
${GDexe} load=${testname}.cfg ${testname}.c || \
    failure running ${GDexe}
cmp -s ${testname}.test ${testname}.out || \
	failure "`diff ${testname}.test ${testname}.out`"

# cfg.test ends here