Merge remote-tracking branch 'origin/master' into sheet
[pspp] / tests / ui / terminal / main.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([PSPP terminal UI])
18
19 AT_SETUP([nonexistent syntax file crash])
20 AT_CHECK([pspp nonexistent], [1], 
21   [error: Opening `nonexistent': No such file or directory.
22 ])
23 AT_CLEANUP
24
25 AT_SETUP([SIGTERM yields clean shutdown])
26 AT_DATA([main.sps], [dnl
27 INPUT PROGRAM.
28 COMPUTE x = x + 1.
29 DO IF x = 10000.
30 END CASE.
31 ELSE IF x < 0.
32 END FILE.
33 END IF.
34 END INPUT PROGRAM.
35 EXECUTE.
36 ])
37 AT_CHECK([pspp main.sps & sleep 1; kill $!; wait $!], [143], [], [ignore])
38 AT_CLEANUP
39
40 AT_SETUP([SIGSEGV yields error report])
41 AT_CHECK([[echo 'host command=["kill -SEGV $PPID"].' | pspp -O format=csv]],
42   [139], [], [stderr])
43
44 cat > expout <<EOF
45 ******************************************************
46 You have discovered a bug in PSPP.  Please report this
47 to $PACKAGE_BUGREPORT.  Please include this entire
48 message, *plus* several lines of output just above it.
49 For the best chance at having the bug fixed, also
50 include the syntax file that triggered it and a sample
51 of any data file used for input.
52 proximate cause:     Segmentation Violation
53 EOF
54
55 AT_CHECK([sed '/proximate/q' < stderr], [0], [expout])
56 AT_CLEANUP
57
58
59 dnl This tests for a crash which was observed with --syntax
60 AT_SETUP([argument parsing])
61
62 AT_DATA([main.sps], [dnl
63 ECHO 'This is a test'.
64 FINISH.
65 ])
66
67 AT_CHECK([pspp --syntax=enhanced main.sps], [0], [ignore])
68
69 AT_CLEANUP