Made all the tests respect the PSPP_TEST_NO_CLEANUP environment variable.
authorJohn Darrington <john@darrington.wattle.id.au>
Tue, 20 May 2008 02:20:30 +0000 (02:20 +0000)
committerJohn Darrington <john@darrington.wattle.id.au>
Tue, 20 May 2008 02:20:30 +0000 (02:20 +0000)
115 files changed:
tests/bugs/agg-crash-2.sh
tests/bugs/agg_crash.sh
tests/bugs/alpha-freq.sh
tests/bugs/big-input-2.sh
tests/bugs/big-input.sh
tests/bugs/case-map.sh
tests/bugs/comment-at-eof.sh
tests/bugs/compute-fmt.sh
tests/bugs/compute-lv.sh
tests/bugs/compute-sum.sh
tests/bugs/computebug.sh
tests/bugs/crosstabs-crash.sh
tests/bugs/crosstabs-crash2.sh
tests/bugs/crosstabs.sh
tests/bugs/curtailed.sh
tests/bugs/data-crash.sh
tests/bugs/double-frequency.sh
tests/bugs/empty-do-repeat.sh
tests/bugs/examine-1sample.sh
tests/bugs/examine-missing.sh
tests/bugs/get-no-file.sh
tests/bugs/get.sh
tests/bugs/html-frequency.sh
tests/bugs/if_crash.sh
tests/bugs/keep-all.sh
tests/bugs/lag_crash.sh
tests/bugs/match-files-scratch.sh
tests/bugs/multipass.sh
tests/bugs/overwrite-input-file.sh
tests/bugs/overwrite-special-file.sh
tests/bugs/random.sh
tests/bugs/recode-copy-bug.sh
tests/bugs/t-test-alpha.sh
tests/bugs/t-test-alpha2.sh
tests/bugs/t-test-with-temp.sh
tests/bugs/t-test.sh
tests/bugs/temp-freq.sh
tests/bugs/temporary.sh
tests/bugs/unwritable-dir.sh
tests/bugs/val-labs-trailing-slash.sh
tests/bugs/val-labs.sh
tests/command/aggregate.sh
tests/command/autorecod.sh
tests/command/beg-data.sh
tests/command/bignum.sh
tests/command/count.sh
tests/command/data-list.sh
tests/command/datasheet.sh
tests/command/do-if.sh
tests/command/do-repeat.sh
tests/command/erase.sh
tests/command/examine-extremes.sh
tests/command/examine-percentiles.sh
tests/command/examine.sh
tests/command/file-handle.sh
tests/command/file-label.sh
tests/command/filter.sh
tests/command/flip.sh
tests/command/get-data-txt-examples.sh
tests/command/get-data-txt-importcases.sh
tests/command/get-data-txt.sh
tests/command/import-export.sh
tests/command/input-program.sh
tests/command/lag.sh
tests/command/list.sh
tests/command/longvars.sh
tests/command/loop.sh
tests/command/match-files.sh
tests/command/missing-values.sh
tests/command/oneway-missing.sh
tests/command/permissions.sh
tests/command/print.sh
tests/command/rename.sh
tests/command/sample.sh
tests/command/sort.sh
tests/command/split-file.sh
tests/command/sysfiles-old.sh
tests/command/sysfiles.sh
tests/command/t-test-1-indep-val.sh
tests/command/t-test-1-sample-missing-anal.sh
tests/command/t-test-1-sample-missing-list.sh
tests/command/t-test-1s.sh
tests/command/t-test-groups.sh
tests/command/t-test-indep-missing-anal.sh
tests/command/t-test-indep-missing-list.sh
tests/command/t-test-paired-missing-anal.sh
tests/command/t-test-paired-missing-list.sh
tests/command/t-test-pairs.sh
tests/command/tabs.sh
tests/command/trimmed-mean.sh
tests/command/use.sh
tests/command/variable-display.sh
tests/command/vector.sh
tests/command/weight.sh
tests/expressions/epoch.sh
tests/expressions/expressions.sh
tests/expressions/randist.sh
tests/expressions/valuelabel.sh
tests/expressions/variables.sh
tests/expressions/vectors.sh
tests/formats/360.sh
tests/formats/bcd-in.sh
tests/formats/float-format.sh
tests/formats/format-guesser.sh
tests/formats/ib-in.sh
tests/formats/legacy-in.sh
tests/output/paper-size.sh
tests/stats/descript-basic.sh
tests/stats/descript-mean-bug.sh
tests/stats/descript-missing.sh
tests/stats/moments.sh
tests/stats/ntiles.sh
tests/stats/percentiles-compatible.sh
tests/stats/percentiles-enhanced.sh
tests/xforms/recode.sh

index cdb94cdc2d9f2645cbd4ccce38a03f943a9d8b89..0b006780f319de5ac506e877543c2e25be7d94da 100755 (executable)
@@ -21,6 +21,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index cc0bad23ce5537964d7eb45e2f22364191b87bc2..43fd9f8c47a13bca00092282932b59ccab028016 100755 (executable)
@@ -21,6 +21,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 49d9fe25a3b44ef3bea4bda1d5f7f83f63a85904..ae60e79ce41070610af46e0a78699a1033dba78d 100755 (executable)
@@ -23,6 +23,10 @@ export LANG
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index ecc0946868d6114c39ce0d3b02d89e3d26245ae1..b0da13bbf3a0af4075e27f87e4ba1ee51e2c2585 100755 (executable)
@@ -24,6 +24,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 8cec3c619635e413bf1cc84b93de402a92113b08..3c9365dfce520d6ea7c4cf7154a59c0fa90a343b 100755 (executable)
@@ -22,6 +22,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index ab9971f0f3f9b81f39398cd38286f341089f5d90..011c344d059ed8a406995bd3e5123ebc065e71e9 100755 (executable)
@@ -22,6 +22,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 6122e6605100f75099d0857a768089d6a8d5c2e8..342f9bc08ab95eeeb7531e97087c4206d678372a 100755 (executable)
@@ -21,6 +21,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 1d898dba19474bc599d143726adde2531f515dc2..0d4a313e26edbb451e38e3dc45c065f558c4cd98 100755 (executable)
@@ -22,6 +22,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 8b7f7fd18c20643803b13290dca626980d0a0c29..b0baf4f09cd4272c5e77c773032cd852f75d75c4 100755 (executable)
@@ -20,6 +20,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 846ef79e5878864ada167d031aa825aec584b265..83aeae048acfe9ca5fce21a4ab84d8492ef901d8 100755 (executable)
@@ -21,6 +21,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 08077e57a838b7cd56fb2f99636e9384240409d8..dfa5990a759cc416209552e6ba60b4f1eb6379cd 100755 (executable)
@@ -20,6 +20,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 0531094a13768d1226cd5b6fef3e4e0664b37e41..99ec07cac271ebf44c7fbccd528ef9547122d144 100755 (executable)
@@ -23,6 +23,10 @@ export LANG
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 043aff878f498d955b699ecba9ca393a8b0cac0e..5866d0e58c584d5ca28f8a611dca22372c1094e7 100755 (executable)
@@ -22,6 +22,10 @@ export LANG
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 818682d7301f0733d0c74dc27907e78cab59920d..3ef691f376b672facb32463112c4ac9d86337f74 100755 (executable)
@@ -20,6 +20,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 9c46e9ffcdba3b1e418c37e0ed27120e78b0507a..26de22b2390a61b4eb0ddae36ea429bf344582dc 100755 (executable)
@@ -21,6 +21,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 1cf5d794501c53dd93ffd33b2058c27ebb35ef56..dfdcbfdc60f2da20c2fe29075cc452bafd2372e4 100755 (executable)
@@ -21,6 +21,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 1c9405e876b5ce1c60803af437199a8268c2cea4..ca958cd1ea6eabf09a81504637e998522f908bea 100755 (executable)
@@ -22,6 +22,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 9829230d0911abb3e16cccb5eedd65c04268fa2d..b96b2feab28075dbe117f3a25763d6e3373a21f0 100755 (executable)
@@ -21,6 +21,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 8fe628f545d55cf56e1361a46983b8b88b6d47b1..49ce086c592d07a44bccf306cef5d20443ff18e7 100755 (executable)
@@ -21,6 +21,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index a2e79cecf7e541963d9d741bfb4e565274b290ae..5e3edec3dadf176d60bfb12f0c0aab1aa9108e2a 100755 (executable)
@@ -22,6 +22,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 5e4de67a7f1d2130286dc7c30630051541969cfd..d047b76758a332ff398ab56ecc5d65c2d4f80c19 100755 (executable)
@@ -21,6 +21,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 1ab18044b3cbf9ab9925210768b5772712158d9a..2cc6cfc5a3e26ec7f0b8d24a629fb75728e4f2d5 100755 (executable)
@@ -22,6 +22,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 8fda14398588588ede516022f87fe3b00dbbceef..789fe32c74766ade1f606d060375ce049ba50858 100755 (executable)
@@ -22,6 +22,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index bda4a73c6c74cbf999e3c6230cf3e48b9144a218..4f07d30281e5173da39d667bd64efab363560e68 100755 (executable)
@@ -21,6 +21,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 1450889ffb0e7c566b6e839066fc0ec48ace4d03..f64674ded977c02b35b080e4ac00d8bb68247c74 100755 (executable)
@@ -21,6 +21,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 87a411ad0d18e227460a4265c964382c6f353736..73bce147237c8dd1d60ca98babc529096ddd7cea 100755 (executable)
@@ -20,6 +20,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 4830ddd359611169f6c9c6459e61e1dd9d9ecd64..dd95c2c0772f9a404fb2e30a7dfd2d4bac5d8602 100755 (executable)
@@ -22,6 +22,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 24b3a5ed8cf48edb016173b3a754162f5fcec6e9..620d42f8918397aa86f06a0d327826e135d50921 100755 (executable)
@@ -21,6 +21,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 8c1fecddbb666e9c9f713a2007e915e17782aa68..d9f3e59cb5ce81d0ad33c56ba807be4e3117b5b5 100755 (executable)
@@ -22,6 +22,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index c23a8d4a858cdbbcd9f6cb17338226fc87ecfe7f..2bac4413014e0d57e0bb084cf0953ae4e0916511 100755 (executable)
@@ -22,6 +22,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index c41dbf00504d556e9dd96601ee0fff9c4c214a51..e423f3e8b4c6318241adc54718902d22a1697b41 100755 (executable)
@@ -21,6 +21,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 9ba32baa46ced03d62f8fce777d4745eb98118d3..912590a34c0869d6260a107a5483f4002c7f0167 100755 (executable)
@@ -20,6 +20,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 663889138b573ca56660e759eaaaf5c9c1f62dbc..ae7ebf135f04fd9815b446351c2f88fee82de050 100755 (executable)
@@ -22,6 +22,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index b1450d182f5c514ccb93a71c3c0f0dfc7c95ed76..c49103a88292fe1f5fc1ad051c08151b72669fb3 100755 (executable)
@@ -21,6 +21,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 7882d8a587ec229692b03f0946ff345606832e5d..92dc3fb02b057f8215dd2907e8e340732b4521a1 100755 (executable)
@@ -21,6 +21,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 6386ac2c9980f9db54c0f0eb4bfa6cb3ad362972..e8c43ebca02d3c890ccb676a1c5df86714d8db7f 100755 (executable)
@@ -22,6 +22,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 64f12ee9aa8f4836f43d0e0ef96e4467b5573211..8e0e2c7a1f72bad09b948623670ae8865f62054d 100755 (executable)
@@ -24,6 +24,10 @@ export LANG
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index d2091669a95a4106779432943e1192363e0f3ee2..8ffa86115999566dbca7c821aca16e67cb2aa793 100755 (executable)
@@ -21,6 +21,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 705c45b91ec5a73f66549c429d60d07c0a9fb0f4..774b6230b6a68e7d0f3a2f9bf5e2237aa24bbcf1 100755 (executable)
@@ -20,6 +20,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      chmod u+w $TEMPDIR
      rm -rf $TEMPDIR
index a014aa7feb92fce7432f48a57ade57efe9bdff7c..7388caaa2466f296c2b0dcf5b588accf33c40a07 100755 (executable)
@@ -21,6 +21,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index c287bde804209d45c1d951cbae356bbb58e94d7d..4d57f661e79511acfb522e2ddd2f0590a91814d4 100755 (executable)
@@ -22,6 +22,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 8fca96fab01db1991b6f770b3e84b4ce39d6367b..0992e45bced84e734faab4dd25c57b00c68a2f39 100755 (executable)
@@ -19,6 +19,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 47e00239acf26930ab06a3c2ea2c53752ea27992..e956fcfa0403363b6ef61b9d7955855728185ff3 100755 (executable)
@@ -23,6 +23,10 @@ export LANG
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 9071a47536ec20cef9185f71a8f5ff3a883c1b00..6d835015e7e3d6ade18ccbe7cf0b45caa957cc70 100755 (executable)
@@ -22,6 +22,10 @@ export LANG
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index e50819181402d9a996d86d801444030bbafac150..41e1963c170c1106ae024cdbf052be1dc9ab164b 100755 (executable)
@@ -20,6 +20,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 7c70fa2113b478e7f6a07eb4b0d7f3d25e3fd7d2..0813c428aa647d9bfc40dad03b4f60b7b4a818d7 100755 (executable)
@@ -22,6 +22,10 @@ export LANG
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index fbad9c80d509a2d7e461f18921886518883aa760..7d3890c3430bf5fe34c22467cfcc9338bf4ff6f7 100755 (executable)
@@ -20,6 +20,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 475e008579b5185e969bea87afc724dd66a416bd..2ad30d734b3f32e0e02b67f58cc060aeb0ae0f5a 100755 (executable)
@@ -22,6 +22,10 @@ export LANG
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 185dc4e4fc4488cb9ad86974f776f39a5e48de21..8cb6b824016542a45e54326d9f52091e05a1ce23 100755 (executable)
@@ -21,8 +21,12 @@ export LANG
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
-     #rm -rf $TEMPDIR
+     rm -rf $TEMPDIR
 }
 
 
index 3f37618a65bd38055685e983b571f66614684c30..0f395422f50180cb5b736f86ab9c37358e063c5d 100755 (executable)
@@ -20,6 +20,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 0599bed315e666cafc21b71650d4996d753a25f0..491f79aa3bf4f96317b75769473c706bc8001509 100755 (executable)
@@ -20,6 +20,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index feb052c430c5d66b002605c70d5b44d067960086..fc648313b4db9cd8710579eee5e8436115770cc4 100755 (executable)
@@ -22,6 +22,10 @@ export LANG
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 8638d1ade670d7da619af2ca2fa09b8f1db414c8..708e5342b27c1f5a9a722acc89023233a03b4fad 100755 (executable)
@@ -25,6 +25,10 @@ export LANG
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 4f710f5bb80674c6f766d2a821bde38a0839edfb..d63c258709a7b3b049594b47b6e39b00dd421357 100755 (executable)
@@ -22,6 +22,10 @@ export LANG
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index b41c5a5405d6c8eb04b8b11bb8c82a166494d0d0..3dfe52f10be98f1d213041303d85bac8fae4cff6 100755 (executable)
@@ -20,6 +20,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 4b6ab0e62200ea9af07b5cced5e2e7627ac1f8ec..e6211b4d4b8090189628ddd8c11e6fcc4de98122 100755 (executable)
@@ -22,6 +22,10 @@ export LANG
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 40729c85ed7b8e896c8bad817e724c9c93e58d53..ec76fba9f099c08157cd123ec647a01df6c8450d 100755 (executable)
@@ -20,6 +20,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index dc2b1770146cc7802cd0223f2ddcb20d4a251d23..a3e5caf2c896cc84ebad3058ad7bb59d775a398c 100755 (executable)
@@ -22,6 +22,10 @@ export LANG
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index d9fab7505e942a3e15bbfdc8cb53ad181f1e30ce..c601b50672bce576545f530392d815b59937af7e 100755 (executable)
@@ -22,6 +22,10 @@ export LANG
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 40cdc62185af679941190666d0afd77155040d3a..1c7b7cefca8e99ce9b4b3682ca37292769ca653e 100755 (executable)
@@ -21,6 +21,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 68ee637d0fe4b73dd738c1b9075ea0a8c92b330d..2bd0346b52f826eafe95b7e0cdca3fbcf03bb465 100755 (executable)
@@ -22,6 +22,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 67fc8d2ab7278e1abc42243efedf8bf4d279b7ef..f0c2b5c4793b481e1504f8786315a4ecea30e2e9 100755 (executable)
@@ -20,6 +20,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 0d7d95ca2b04c102ff26856267d497aadc6abbb4..a6e8c7784a2c1666793fe934fcd02eb58c808bc6 100755 (executable)
@@ -22,6 +22,10 @@ export LANG
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 68f4f9c7939c8d0697cdf9cc9131b13b728a69dc..bc14e1a93dfc2a6b1b5ef1c7b733b5e31b82956b 100755 (executable)
@@ -22,6 +22,10 @@ export LANG
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index ab95a0b35f5f2cc78db557ab418ee6dd64c77b68..504314a9601c1d977d405a48df05cddb71f281e0 100755 (executable)
@@ -22,6 +22,10 @@ export LANG
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 184be56520ce753677aa75efc1f1fb878ae4dd8f..2a75f64b5e8ab629dfa50c556f8213c094184c26 100755 (executable)
@@ -22,6 +22,10 @@ export LANG
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index d8f930c8b51d7e3eb36ad2527a596896fa73052b..813777f4acea547542e62ce827faecb439877bac 100755 (executable)
@@ -23,6 +23,10 @@ export LANG
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index bb4107e58fd4962a9d1d14dba8a192c6201ccdf6..965539c8815fecc490e020b7e53f35b6afaba659 100755 (executable)
@@ -21,9 +21,12 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
     cd /
     rm -rf $TEMPDIR
-    :
 }
 
 
index 4b1e0eb4e735c3c9617e210fd173537aa67d8cff..6641b520b9d34a112a3306a13759d71a6228cd5e 100755 (executable)
@@ -22,6 +22,10 @@ export LANG
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index ec3634ca705c7e2a7c0edfd5550f233a66ea5d90..2b16368b121d4c3b270055fe3b87fc381258a6bc 100755 (executable)
@@ -20,6 +20,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 359efa1006829005aed576fcf76fbdf3a7cc0545..db54cd5ade4ae8ec0b5fd8fbccc07aee8ea8d5e1 100755 (executable)
@@ -20,6 +20,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index c5de1e9fe6f40992fc9c8d0d23b4249c0d242464..4a0527588de2cb321887549d094b5927433e6cbb 100755 (executable)
@@ -37,6 +37,10 @@ export LANG
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 2837223ed6afcdccf493982c40f0fdd8e3578544..ff46486a3f0ef81ae420e90a6bf2da75539f42e0 100755 (executable)
@@ -22,6 +22,10 @@ PSPP=$top_builddir/src/ui/terminal/pspp
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 6ba6646bc1ae3d3e202142138ee765e77d7186d5..4f4515e2be05073a21a85232970a2bdbe77b5069 100755 (executable)
@@ -20,6 +20,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index c3c96a35456b56d76db8bf76b9e6067cdf6e8867..d66681be7bf9e9b588d4c7be3886f4f9936df6e2 100755 (executable)
@@ -21,6 +21,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 60b4d3a5574ef20599cdad654440483ed620b8e7..eb2c991c1e97d328d120c76fe9915c67fbde93d3 100755 (executable)
@@ -23,6 +23,10 @@ export LANG
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 4b2c8cd40db5f3babe4b110b134210a9b88fa4c8..df16690b01e18bba127ff1f7705e95dd528ecbf2 100755 (executable)
@@ -22,6 +22,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 2bfd6a5b03163a3f8ae86752531694c2d7e5a4fd..d4f59052de98b9d5e99820a2dce6beffbe221a89 100755 (executable)
@@ -22,6 +22,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 2490490130e6561098440e6b6b22e97765b181c0..5f4a5c17651a677312cc7523ce4d65477b027531 100755 (executable)
@@ -21,6 +21,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 51ec1dc13228b187ef82c5a9214340717e644329..4cc2effa5b9c946e0425f714bf1feb1329350060 100755 (executable)
@@ -21,6 +21,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 8d63a3e20d271e757cda310c16de4e9116fdf66d..07471484868d9e27af76a784d8bdca77858275bc 100755 (executable)
@@ -21,6 +21,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index bf421bd45dc377aa4a26628104dec6f3f5e49847..4019865b52c5a8baf0b8baef12a24cc7180d7a04 100755 (executable)
@@ -20,6 +20,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 05cc1835fed7d7b613cd99a5ed9b4996d4359422..53080bdf8b12c31c6bb4dfd35cca650886cc8a39 100755 (executable)
@@ -20,6 +20,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 181c73b6bd72aebac1e42ee1bf96dd804f43604b..fd307ff339104fc3182b7feb5767ece35152f2a7 100755 (executable)
@@ -21,6 +21,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 2c7114f1bfb547233335cc1290487347ef7da281..2e62b4d2fb6137106cc13bcf43d8b0bef7aad2b3 100755 (executable)
@@ -21,6 +21,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 533dfa4930edd8105654e699ae144d83c955e5b1..a747d4fddc2cd754c1df1050764960a9887943a2 100755 (executable)
@@ -21,6 +21,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 4317a574a783c87234343a90aa200963ea4eca9c..0f96be4e2b49cf0bfb6ecb4a4ed73b5594a4d230 100755 (executable)
@@ -21,6 +21,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index f657e8fb2cdb3259223603bbc8cb79d2f89d6cb4..25946236121aa271a76e6bcbe62b9b1a60a313ac 100755 (executable)
@@ -20,6 +20,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index c6d968b1884b0c5269c921cf5a2cb2006671a7e6..ad530f45c83cb6cbfbb89881911e3b841ce8b8e7 100755 (executable)
@@ -20,6 +20,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 7346e526cf00aa9c64cafa38380bd5e88b09de7c..e2a5af71ae4597e0e1a7b8d7c2ce80ff1cffd56a 100755 (executable)
@@ -24,6 +24,10 @@ export LANG
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index f81b2264121b4545e78b47eabd5b372130beda78..18b66f0f158054209c6b9eec653c08c2a062b663 100755 (executable)
@@ -20,6 +20,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index bb639d10f6e8829ad012ddaed0201555e963a234..d3f680245315d5eb00ed7b0e2d83c1d781e3cb51 100755 (executable)
@@ -21,6 +21,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 94c0c4693cb2c7dabb0bef63739c9dd7fbda7f59..e99fab4b3a3265abcda0b81b3871c8cfa53f89ed 100755 (executable)
@@ -23,6 +23,10 @@ export LANG
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 01bd0a318c5814b2056850c45573cfbffa2e20c2..6d90315652246bb061504b15db42a7d68880ec29 100755 (executable)
@@ -23,7 +23,10 @@ export LANG
 
 cleanup()
 {
-     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then return ; fi
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR"
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 27184e0812ff2cbf06277b3366f88c7165efaeab..1ceab30801673dc06137b1222f29eb19388c072b 100755 (executable)
@@ -18,6 +18,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 8f55efda3705c0e03eb96ee3dc78043274a27f16..339abed4dd90318ffb4fb8a27d5f6103f2c69f0b 100755 (executable)
@@ -19,6 +19,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 188e8ac31544fe5655ebbacde523556f5a325fed..58fe386d291f4738661c0385d1ee67faeaf0d180 100755 (executable)
@@ -19,7 +19,7 @@ export STAT_CONFIG_PATH
 cleanup()
 {
      if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
-        echo NOT removing directory $TEMPDIR
+       echo "NOT cleaning $TEMPDIR" 
        return ; 
      fi
      cd /
index ef21e041f5e0697398382ca660895631d4e696e8..1c29a7a523f2a4ee42e4b3f5dc2f030d19f83c63 100755 (executable)
@@ -19,6 +19,10 @@ export LANG
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 8ffe3c8d87bebd533d39f84d1435d7744ed83ccb..c4a2d5d46e5908aabd05e5fc3da29f1e61d419c6 100755 (executable)
@@ -19,6 +19,10 @@ export LANG
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 82989720bc057a4ef8f1df6c048a5edd31a19bbe..57cef8b6607da8d3cba4f6ab98db333088d2e468 100755 (executable)
@@ -20,6 +20,10 @@ export LANG
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index c813e648767c11f4a880d9de5018a7c4733b6c5c..5139dd30abcd6ba7565033593913a775119280da 100755 (executable)
@@ -20,6 +20,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index f93adeafeead61b06e73ef78c03969b407529c13..934f4302c0fef129cec4fe0469b111aa36ea3836 100755 (executable)
@@ -18,6 +18,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index b146d18993292329edf39287d9f8eeee3a7994bf..2a6b608740e1e248895056a043513f0bcdf3614d 100755 (executable)
@@ -19,6 +19,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index ce98b1266bcfbea282b4dd396932d164fd83be1f..75885a7830c901fc4e0dcaba897cfb8caae28dde 100755 (executable)
@@ -19,9 +19,12 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
-     :
 }
 
 
index 0519d27d495d1879b3c0b100d68ea5cfa0b02f28..3a54c2f0fc8e515f15fa07158c2bfe67296032c7 100755 (executable)
@@ -18,6 +18,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index cfb5f47ef04a6bffec9d126f68bd459a0d18c6af..1087a06f1292a70b1889196cb8a0fc75757f33be 100755 (executable)
@@ -18,6 +18,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 547393760551b598b6fc8becbe0ef2df10a3cee4..dfe395b4fb0579287e3a99418d0247b0aa14b255 100755 (executable)
@@ -21,6 +21,10 @@ export LANG
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 765172b2870935993d62155d3deb3736560b36c4..82b8cdaa24b2ab1d60641a2a6e18d760f94b7055 100755 (executable)
@@ -21,6 +21,10 @@ export LANG
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index defe833f041e029f58391e2ea241bebb9e84ffe7..72d7841f33119726a95dace55e03d8732f577b8f 100755 (executable)
@@ -20,6 +20,10 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 87593430150954b4f65ca65395c36f7785ac0fd8..a295be5dcaf6d2734ccd091bc3dad749b56ff56c 100755 (executable)
@@ -21,6 +21,10 @@ export LANG
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }
index 947b4cd1d7afa382f31fac9161a1d942583b1ed2..89854285a0f0cde4fc9b7ad801a7db58e9970249 100755 (executable)
@@ -19,9 +19,12 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
-     :
 }
 
 
index f696cf95b597aea88614a4e16f9867daa11d30cd..dd00a361368128d3d02dbe834514a971b8c7a003 100755 (executable)
@@ -19,9 +19,12 @@ export STAT_CONFIG_PATH
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
-     :
 }
 
 
index 63a19068d6705b8329f5a581db9a50ba28193153..d1e724d70f1289e4027c1bdd93d3e82a272f653d 100755 (executable)
@@ -23,9 +23,12 @@ export LANG
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
-     :
 }
 
 
index 6d6e2b03126fb7982e4f1a604ce0dd8313942e31..f818f820b48e35b6f1d04cbe6b03a5dc13817688 100755 (executable)
@@ -23,9 +23,12 @@ export LANG
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
-     :
 }
 
 
index 46586bdba0ec020c30d08e242a023f0f04ea0962..b9cabe0a82d34488b0d5f8b40b614dd92bd71f41 100755 (executable)
@@ -23,6 +23,10 @@ export LANG
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
+       echo "NOT cleaning $TEMPDIR" 
+       return ; 
+     fi
      cd /
      rm -rf $TEMPDIR
 }