X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=inline;f=tests%2Fcommand%2Ffilter.sh;h=4e9559135197a89deac79a169ed1fa5c2d6d6a1f;hb=897a260ef7a8b954d56698cc40241a3197127505;hp=905d21aeaf785b97dd53f5fada95a858b5393bb2;hpb=05e356b2a3087e819ef3b5388e29c822f41502e1;p=pspp diff --git a/tests/command/filter.sh b/tests/command/filter.sh index 905d21aeaf..4e95591351 100755 --- a/tests/command/filter.sh +++ b/tests/command/filter.sh @@ -10,11 +10,13 @@ here=`pwd`; # ensure that top_srcdir is absolute cd $top_srcdir; top_srcdir=`pwd` -export STAT_CONFIG_PATH=$top_srcdir/config +STAT_CONFIG_PATH=$top_srcdir/config +export STAT_CONFIG_PATH cleanup() { + cd / rm -rf $TEMPDIR } @@ -48,7 +50,7 @@ cd $TEMPDIR activity="create program" cat > $TESTFILE << EOF -data list notable /x 1-2. +data list notable /X 1-2. begin data. 1 2 @@ -61,7 +63,7 @@ begin data. 9 10 end data. -compute filter_$ = mod(x,2). +compute FILTER_$ = mod(x,2). filter by filter_$. list.