+Wed Mar 10 21:16:34 2004 Ben Pfaff <blp@gnu.org>
+
+ * temporary.c: (cmd_temporary) When TEMPORARY was the first
+ transformation following the input program, if any, for some
+ reason we special-cased f_trns. That's just wrong. It should
+ always be set to n_trns.
+
Tue Mar 9 23:44:40 2004 Ben Pfaff <blp@gnu.org>
* format.c: (parse_format_specifier_name) Fix brown-bag bug
/* Make a copy of the current dictionary. */
temporary = 1;
temp_dict = dict_clone (default_dict);
- if (f_trns == n_trns)
- temp_trns = -1;
- else
- temp_trns = n_trns;
+ temp_trns = n_trns;
debug_printf (("TEMPORARY: temp_trns=%d\n", temp_trns));
return lex_end_of_command ();
+Wed Mar 10 21:22:03 2004 Ben Pfaff <blp@gnu.org>
+
+ * bugs/temporary.sh: Test that basic use of TEMPORARY works.
+
Mon Feb 16 21:36:57 2004 Ben Pfaff <blp@gnu.org>
* */*.sh: Prepend $SUPERVISOR to invocations of pspp so that we
bugs/html-frequency.sh \
bugs/crosstabs.sh \
bugs/data-crash.sh \
- bugs/random.sh
+ bugs/random.sh \
+ bugs/temporary.sh
noinst_PROGRAMS = gengarbage
--- /dev/null
+#!/bin/sh
+
+# This program tests for a bug which caused UNIFORM(x) to always return zero.
+
+
+TEMPDIR=/tmp/pspp-tst-$$
+
+here=`pwd`;
+
+# ensure that top_srcdir is absolute
+cd $top_srcdir; top_srcdir=`pwd`
+
+export STAT_CONFIG_PATH=$top_srcdir/config
+
+
+cleanup()
+{
+ 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/rnd.sps <<EOF
+DATA LIST LIST NOTABLE /x *.
+begin data.
+1
+2
+3
+4
+5
+6
+7
+8
+9
+end data.
+
+temporary.
+select if x > 5 .
+list.
+
+list.
+EOF
+if [ $? -ne 0 ] ; then no_result ; fi
+
+$SUPERVISOR $here/../src/pspp -o raw-ascii $TEMPDIR/rnd.sps
+if [ $? -ne 0 ] ; then no_result ; fi
+
+
+diff -b -B -w $TEMPDIR/pspp.list - << EOF
+ X
+--------
+ 6.00
+ 7.00
+ 8.00
+ 9.00
+
+ X
+--------
+ 1.00
+ 2.00
+ 3.00
+ 4.00
+ 5.00
+ 6.00
+ 7.00
+ 8.00
+ 9.00
+EOF
+if [ $? -ne 0 ] ; then fail ; fi
+
+pass;