pspp-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Pspp-commits] [SCM] GNU PSPP branch, master, updated. v0.6.1-1346-g9bd0


From: Ben Pfaff
Subject: [Pspp-commits] [SCM] GNU PSPP branch, master, updated. v0.6.1-1346-g9bd0a6e
Date: Wed, 26 May 2010 05:07:23 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU PSPP".

The branch, master has been updated
       via  9bd0a6e248302b51806d1d977987dee836ca9e1c (commit)
       via  fd38d03096803bf6705e95f4b389fac3dee1c62a (commit)
       via  9c6eaf297d6220842264e72c44686b26d47474d1 (commit)
       via  02e96406b907cb4a6f0c803cfa5141358bd0e352 (commit)
       via  cb062bfc8fa1b1477de31fd8a0f072f4bcf3d6b1 (commit)
       via  a3dbdbf5fafb47979f2489ff80aff74685f83386 (commit)
       via  fb2f5ddb7eb9396936e6712ab39a3dca08ec7f1e (commit)
      from  75e03441e94fc170e16cda7d4faa40fc2af74589 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 9bd0a6e248302b51806d1d977987dee836ca9e1c
Author: Ben Pfaff <address@hidden>
Date:   Sat Oct 17 17:12:58 2009 -0700

    Fix tests/command/sample.sh test on Mingw.
    
    On Mingw pspp.list contains CR-LF line ends, so the "grep" command to
    skip blank lines needs to allow for that.

commit fd38d03096803bf6705e95f4b389fac3dee1c62a
Author: Ben Pfaff <address@hidden>
Date:   Sat Oct 17 17:12:19 2009 -0700

    Fix tests/formats/num-out.sh test on Mingw.
    
    inexactify needs an .exe extension on Mingw.

commit 9c6eaf297d6220842264e72c44686b26d47474d1
Author: Ben Pfaff <address@hidden>
Date:   Sat Oct 17 16:57:42 2009 -0700

    Fix Mingw test failures due to differences in line endings.
    
    This commit changes "diff" invocations to ignore changes in white space to
    avoid spurious test failures due to differences in line endings.

commit 02e96406b907cb4a6f0c803cfa5141358bd0e352
Author: Ben Pfaff <address@hidden>
Date:   Sat Oct 17 16:46:21 2009 -0700

    Fix get-data-txt-importcases.sh test on Mingw.
    
    On Mingw, ftell() and ftello() are unreliable when used on text files with
    plain LF line endings:
        http://article.gmane.org/gmane.comp.gnu.m4.bugs/2224
    
    This made the get-data-txt-importcases.sh test fail, because
    dfm_get_percent_read() that it depends upon to determine the percentage of
    the file that has been read uses ftello().  The solution is to always open
    the text file as a binary file.  According to my audit of the ways that
    the text file is read, this should not cause other problems.  In
    particular, ds_read_line() handles both LF and CR-LF line endings.  But it
    cannot handle negative effects on Unix platforms anyway, since they do not
    distinguish text and binary modes.

commit cb062bfc8fa1b1477de31fd8a0f072f4bcf3d6b1
Author: Ben Pfaff <address@hidden>
Date:   Tue May 25 22:06:57 2010 -0700

    Add $EXEEXT to names of binaries executed in tests.
    
    This makes "make check" work much better when building for Windows with
    the mingw cross-compiler suite.

commit a3dbdbf5fafb47979f2489ff80aff74685f83386
Author: Ben Pfaff <address@hidden>
Date:   Mon Oct 12 22:10:55 2009 -0700

    Move auxiliary files used for build into "build-aux" directory.
    
    This reduces clutter in the root directory of the PSPP distribution.  It
    is common practice for GNU software these days.

commit fb2f5ddb7eb9396936e6712ab39a3dca08ec7f1e
Author: Ben Pfaff <address@hidden>
Date:   Tue May 25 21:46:23 2010 -0700

    perl-module: Copy perl-module files if missing as well as if changed.
    
    I don't know why the behavior here changed, because I don't see any changes
    that would cause the problem, but at least the new version makes equal
    sense.

-----------------------------------------------------------------------

Summary of changes:
 Makefile.am                                   |    2 +-
 Smake                                         |    3 ++-
 texinfo.tex => build-aux/texinfo.tex          |    0
 configure.ac                                  |    1 +
 perl-module/automake.mk                       |    3 ++-
 src/language/data-io/data-reader.c            |    3 +--
 tests/automake.mk                             |    3 ++-
 tests/bugs/big-input-2.sh                     |    2 +-
 tests/bugs/big-input.sh                       |    2 +-
 tests/bugs/case-map.sh                        |    2 +-
 tests/bugs/comment-at-eof.sh                  |    2 +-
 tests/bugs/compression.sh                     |    2 +-
 tests/bugs/curtailed.sh                       |    2 +-
 tests/bugs/data-crash.sh                      |    2 +-
 tests/bugs/empty-do-repeat.sh                 |    2 +-
 tests/bugs/examine-1sample.sh                 |    2 +-
 tests/bugs/examine-crash.sh                   |    2 +-
 tests/bugs/examine-crash2.sh                  |    2 +-
 tests/bugs/examine-crash3.sh                  |    2 +-
 tests/bugs/examine-missing.sh                 |    2 +-
 tests/bugs/examine-missing2.sh                |    2 +-
 tests/bugs/get-no-file.sh                     |    2 +-
 tests/bugs/get.sh                             |    2 +-
 tests/bugs/if_crash.sh                        |    2 +-
 tests/bugs/input-crash.sh                     |    2 +-
 tests/bugs/keep-all.sh                        |    2 +-
 tests/bugs/lag_crash.sh                       |    2 +-
 tests/bugs/list-overflow.sh                   |    2 +-
 tests/bugs/match-files-scratch.sh             |    2 +-
 tests/bugs/multipass.sh                       |    2 +-
 tests/bugs/overwrite-input-file.sh            |    2 +-
 tests/bugs/overwrite-special-file.sh          |    2 +-
 tests/bugs/print-crash.sh                     |    2 +-
 tests/bugs/random.sh                          |    2 +-
 tests/bugs/shbang.sh                          |    2 +-
 tests/bugs/signals.sh                         |    2 +-
 tests/bugs/t-test-alpha.sh                    |    2 +-
 tests/bugs/t-test-alpha2.sh                   |    2 +-
 tests/bugs/t-test-alpha3.sh                   |    2 +-
 tests/bugs/t-test-paired.sh                   |    2 +-
 tests/bugs/t-test-with-temp.sh                |    2 +-
 tests/bugs/t-test.sh                          |    2 +-
 tests/bugs/temporary.sh                       |    2 +-
 tests/bugs/unwritable-dir.sh                  |    2 +-
 tests/bugs/val-labs-trailing-slash.sh         |    2 +-
 tests/bugs/val-labs.sh                        |    2 +-
 tests/command/add-files.sh                    |    2 +-
 tests/command/attributes.sh                   |    2 +-
 tests/command/beg-data.sh                     |    2 +-
 tests/command/bignum.sh                       |    2 +-
 tests/command/correlation.sh                  |    2 +-
 tests/command/count.sh                        |    2 +-
 tests/command/data-list.sh                    |    2 +-
 tests/command/do-if.sh                        |    2 +-
 tests/command/do-repeat.sh                    |    2 +-
 tests/command/erase.sh                        |    2 +-
 tests/command/examine-extremes.sh             |    2 +-
 tests/command/examine-percentiles.sh          |    2 +-
 tests/command/examine.sh                      |    2 +-
 tests/command/file-handle.sh                  |    2 +-
 tests/command/file-label.sh                   |    2 +-
 tests/command/filter.sh                       |    2 +-
 tests/command/flip.sh                         |    2 +-
 tests/command/get-data-gnm.sh                 |    2 +-
 tests/command/get-data-psql.sh                |    2 +-
 tests/command/get-data-txt-examples.sh        |    2 +-
 tests/command/get-data-txt-importcases.sh     |    2 +-
 tests/command/get-data-txt.sh                 |    2 +-
 tests/command/import-export.sh                |    2 +-
 tests/command/input-program.sh                |    2 +-
 tests/command/insert.sh                       |    2 +-
 tests/command/lag.sh                          |    2 +-
 tests/command/line-ends.sh                    |    2 +-
 tests/command/list.sh                         |    2 +-
 tests/command/longvars.sh                     |    2 +-
 tests/command/loop.sh                         |    2 +-
 tests/command/match-files.sh                  |    2 +-
 tests/command/missing-values.sh               |    2 +-
 tests/command/n_of_cases.sh                   |    2 +-
 tests/command/no_case_size.sh                 |    2 +-
 tests/command/npar-binomial.sh                |    2 +-
 tests/command/npar-chisquare.sh               |    2 +-
 tests/command/npar-sign.sh                    |    4 ++--
 tests/command/npar-wilcoxon.sh                |    6 +++---
 tests/command/oneway-missing.sh               |    2 +-
 tests/command/oneway-with-splits.sh           |    2 +-
 tests/command/oneway.sh                       |    2 +-
 tests/command/permissions.sh                  |    2 +-
 tests/command/print-strings.sh                |    2 +-
 tests/command/print.sh                        |    8 ++++----
 tests/command/rank.sh                         |    2 +-
 tests/command/regression-qr.sh                |    2 +-
 tests/command/regression.sh                   |    2 +-
 tests/command/reliability.sh                  |    4 ++--
 tests/command/rename.sh                       |    4 ++--
 tests/command/roc.sh                          |    2 +-
 tests/command/roc2.sh                         |    2 +-
 tests/command/sample.sh                       |    4 ++--
 tests/command/sort.sh                         |    2 +-
 tests/command/split-file.sh                   |    2 +-
 tests/command/sysfile-info.sh                 |    2 +-
 tests/command/sysfiles-old.sh                 |    2 +-
 tests/command/sysfiles.sh                     |    2 +-
 tests/command/t-test-1-indep-val.sh           |    2 +-
 tests/command/t-test-1-sample-missing-anal.sh |    2 +-
 tests/command/t-test-1-sample-missing-list.sh |    2 +-
 tests/command/t-test-1s.sh                    |    2 +-
 tests/command/t-test-groups.sh                |    2 +-
 tests/command/t-test-indep-missing-anal.sh    |    2 +-
 tests/command/t-test-indep-missing-list.sh    |    2 +-
 tests/command/t-test-paired-missing-anal.sh   |    2 +-
 tests/command/t-test-paired-missing-list.sh   |    2 +-
 tests/command/t-test-pairs.sh                 |    2 +-
 tests/command/tabs.sh                         |    2 +-
 tests/command/trimmed-mean.sh                 |    2 +-
 tests/command/update.sh                       |    2 +-
 tests/command/use.sh                          |    2 +-
 tests/command/variable-display.sh             |    2 +-
 tests/command/vector.sh                       |    2 +-
 tests/command/very-long-strings.sh            |    2 +-
 tests/command/weight.sh                       |    2 +-
 tests/data/datasheet-test.sh                  |    2 +-
 tests/expressions/epoch.sh                    |    2 +-
 tests/expressions/expressions.sh              |    2 +-
 tests/expressions/randist.sh                  |    2 +-
 tests/expressions/valuelabel.sh               |    2 +-
 tests/expressions/variables.sh                |    2 +-
 tests/expressions/vectors.sh                  |    2 +-
 tests/formats/360.sh                          |    2 +-
 tests/formats/bcd-in.sh                       |    2 +-
 tests/formats/binhex-out.sh                   |    2 +-
 tests/formats/date-in.sh                      |    2 +-
 tests/formats/date-out.sh                     |    2 +-
 tests/formats/float-format.sh                 |    2 +-
 tests/formats/format-guesser.sh               |    2 +-
 tests/formats/ib-in.sh                        |    2 +-
 tests/formats/legacy-in.sh                    |    2 +-
 tests/formats/month-in.sh                     |    2 +-
 tests/formats/month-out.sh                    |    2 +-
 tests/formats/num-in.sh                       |    2 +-
 tests/formats/num-out.sh                      |    6 +++---
 tests/formats/time-in.sh                      |    2 +-
 tests/formats/time-out.sh                     |    2 +-
 tests/formats/wkday-in.sh                     |    2 +-
 tests/formats/wkday-out.sh                    |    2 +-
 tests/libpspp/sparse-xarray-test.sh           |    2 +-
 tests/output/paper-size.sh                    |    2 +-
 tests/stats/moments.sh                        |    2 +-
 tests/stats/percentiles-enhanced.sh           |    2 +-
 tests/test_template                           |    2 +-
 150 files changed, 163 insertions(+), 160 deletions(-)
 rename texinfo.tex => build-aux/texinfo.tex (100%)


hooks/post-receive
-- 
GNU PSPP



reply via email to

[Prev in Thread] Current Thread [Next in Thread]