9da187fa45f3b52f915903cfd65dc9f3edcd48e6
[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
42 # This test intentionally causes SIGSEGV, so make Address Sanitizer ignore it.
43 ASAN_OPTIONS=$ASAN_OPTIONS:handle_segv=0; export ASAN_OPTIONS
44
45 AT_CHECK([[echo 'host command=["kill -SEGV $PPID"].' | pspp -O format=csv]],
46   [139], [], [stderr])
47
48 cat > expout <<EOF
49 ******************************************************
50 You have discovered a bug in PSPP.  Please report this
51 to $PACKAGE_BUGREPORT.  Please include this entire
52 message, *plus* several lines of output just above it.
53 For the best chance at having the bug fixed, also
54 include the syntax file that triggered it and a sample
55 of any data file used for input.
56 proximate cause:     Segmentation Violation
57 EOF
58
59 AT_CHECK([sed '/proximate/q' < stderr], [0], [expout])
60 AT_CLEANUP
61
62
63 dnl This tests for a crash which was observed with --syntax
64 AT_SETUP([argument parsing])
65
66 AT_DATA([main.sps], [dnl
67 ECHO 'This is a test'.
68 FINISH.
69 ])
70
71 AT_CHECK([pspp --syntax=enhanced main.sps], [0], [ignore])
72
73 AT_CLEANUP