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
|
### OpenCOBOL Test Suite -*- m4 -*-
## Copyright (C) 2003-2009 Keisuke Nishida
## Copyright (C) 2007-2009 Roger While
##
## This program 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 2, or (at your option)
## any later version.
##
## This program 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 software; see the file COPYING. If not, write to
## the Free Software Foundation, 51 Franklin Street, Fifth Floor
## Boston, MA 02110-1301 USA
AT_INIT([Syntax Tests])
AT_TESTED([cobc])
m4_include([copy.at])
m4_include([definition.at])
m4_include([expression.at])
m4_include([subscripts.at]) # 8.4.1.2 Subscripts
m4_include([occurs.at]) # 13.16.36 OCCURS clause
m4_include([redefines.at]) # 13.16.42 REDEFINES clause
m4_include([value.at]) # 13.16.61 VALUE clause
m4_include([move.at]) # 14.8.24 MOVE statement
m4_include([multiply.at]) # 14.8.25 MULTIPLY statement
m4_include([set.at]) # 14.8.35 MULTIPLY statement
|