docs
[pspp] / tests / ui / syntax-gen.at
1 dnl PSPP - a program for statistical analysis.
2 dnl Copyright (C) 2017 Free Software Foundation, Inc.
3 dnl
4 dnl This program is free software: you can redistribute it and/or modify
5 dnl it under the terms of the GNU General Public License as published by
6 dnl the Free Software Foundation, either version 3 of the License, or
7 dnl (at your option) any later version.
8 dnl
9 dnl This program is distributed in the hope that it will be useful,
10 dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
11 dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 dnl GNU General Public License for more details.
13 dnl
14 dnl You should have received a copy of the GNU General Public License
15 dnl along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 dnl
17 AT_BANNER([SYNTAX GENERATOR])
18
19 AT_SETUP([Syntax Generation - printf like])
20
21 AT_CHECK(["$abs_top_builddir/tests/ui/syntax-gen-test"],[0],[dnl
22 A simple string: Hello worldEND
23 A syntax string: "Hello world"END
24 A syntax string containing ": 'here"is the quote'END
25 A syntax string containing non-printables: X'41204374726C4C0C63686172'END
26 An integer: 98765END
27 A floating point number: 3.142END
28 A floating point number with default precision: 1.234000END
29 A floating point number with given precision: 1.23399999999999998579END
30 A literal %
31 and finally a "concatination" of 6 different 20.309000 examples 23.09 of 100% conversions.
32 ])
33
34 AT_CLEANUP