undefined. Fixes bug #20285.
Reviewed by John Darrington.
+2007-07-11 Ben Pfaff <blp@gnu.org>
+
+ * get.c (map_case): Create destination case instead of leaving it
+ undefined. Fixes bug #20285.
+ Reviewed by John Darrington.
+
2007-06-06 Ben Pfaff <blp@gnu.org>
* get.c: Essentially rewrite MATCH FILES to support FIRST and
{
size_t dst_idx;
+ case_create (dst, map->value_cnt);
for (dst_idx = 0; dst_idx < map->value_cnt; dst_idx++)
{
int src_idx = map->map[dst_idx];
+2007-07-06 Ben Pfaff <blp@gnu.org>
+
+ * copyleft.c (legal): Update startup notice to use format
+ recommended by latest GNU coding standards.
+
2007-06-06 Ben Pfaff <blp@gnu.org>
* array.c (binary_search): Fix assertion.
tests/bugs/alpha-freq.sh \
tests/bugs/big-input.sh \
tests/bugs/big-input-2.sh \
+ tests/bugs/case-map.sh \
tests/bugs/comment-at-eof.sh \
tests/bugs/compute-fmt.sh \
tests/bugs/compression.sh \
--- /dev/null
+#!/bin/sh
+
+# This program tests for a bug which caused a crash when
+# a non-empty case_map was created in SAVE.
+
+
+TEMPDIR=/tmp/pspp-tst-$$
+TESTFILE=$TEMPDIR/`basename $0`.sps
+
+# ensure that top_builddir are absolute
+if [ -z "$top_builddir" ] ; then top_builddir=. ; fi
+if [ -z "$top_srcdir" ] ; then top_srcdir=. ; fi
+top_builddir=`cd $top_builddir; pwd`
+PSPP=$top_builddir/src/ui/terminal/pspp
+
+# ensure that top_srcdir is absolute
+top_srcdir=`cd $top_srcdir; pwd`
+
+STAT_CONFIG_PATH=$top_srcdir/config
+export STAT_CONFIG_PATH
+
+
+cleanup()
+{
+ cd /
+ rm -rf $TEMPDIR
+}
+
+
+fail()
+{
+ echo $activity
+ echo FAILED
+ cleanup;
+ exit 1;
+}
+
+
+no_result()
+{
+ echo $activity
+ echo NO RESULT;
+ cleanup;
+ exit 2;
+}
+
+pass()
+{
+ cleanup;
+ exit 0;
+}
+
+mkdir -p $TEMPDIR
+
+cd $TEMPDIR
+
+activity="create program"
+cat > $TEMPDIR/foo.sps <<EOF
+INPUT PROGRAM.
+ COMPUTE #I = 1.
+ COMPUTE X = #I.
+ END CASE.
+ END FILE.
+END INPUT PROGRAM.
+
+SAVE OUTFILE='tiny.sav'.
+EOF
+if [ $? -ne 0 ] ; then no_result ; fi
+
+activity="run program"
+$SUPERVISOR $PSPP -o raw-ascii -e /dev/null $TEMPDIR/foo.sps
+if [ $? -ne 0 ] ; then fail ; fi
+
+pass;