syntax-gen.c : Allow conversion specifiers of the form %.20f
[pspp] / tests / ui / syntax-gen.at
1 AT_BANNER([SYNTAX GENERATOR])
2
3 AT_SETUP([Syntax Generation - printf like])
4
5 AT_CHECK([$abs_top_builddir/tests/ui/syntax-gen-test],[0],[dnl
6 A simple string: Hello worldEND
7 A syntax string: "Hello world"END
8 A syntax string containing ": 'here"is the quote'END
9 A syntax string containing non-printables: X'41204374726C4C0C63686172'END
10 An integer: 98765END
11 A floating point number: 3.142END
12 A floating point number with default precision: 1.234000END
13 A floating point number with given precision: 1.23399999999999998579END
14 A literal %
15 and finally a "concatination" of 6 different 20.309000 examples 23.09 of 100% conversions.
16 ])
17
18 AT_CLEANUP