CROSSTABS: Reimplement parser without q2c.
[pspp] / tests / output / html.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([HTML driver])
18
19 AT_SETUP([HTML bug])
20
21 dnl Checks for a bug which caused the html driver to go into a tight loop.
22 AT_DATA([foo.sps], [data list notable list /w l96_r l99_r l102_r *.
23 begin data.
24 15  0 0 0
25  1  1 1 1
26  2  1 1 2
27  1  1 2 1
28  1  1 2 2
29  1  2 1 1
30  4  2 2 1
31  2  2 2 2
32 end data.
33
34 weight by w.
35
36 crosstabs
37         /tables=l96_r by l99_r by l102_r
38         /format=avalue table
39         /statistics=none
40         /cell=count.
41 ])
42
43 AT_CHECK([pspp -O format=html foo.sps], [0], [ignore])
44
45 AT_CLEANUP