# # patch "ChangeLog" # from [5e6154613aa9f93f54eb814e35642228b36fb4f7] # to [04b1fb4e0f29f17df51d9c40a82e77d7c01c6179] # # patch "testsuite.at" # from [2c6c52294b3e4f89a0b7d917d732a83ab6ee99ac] # to [d3b04db7eac597702e98da8a8166ae84be3c71cb] # --- ChangeLog +++ ChangeLog @@ -1,3 +1,8 @@ +2005-05-13 Jon Bright
+ * testsuite.at (UNGZ): Change the way the ungzipping works on + Win32, in the hope that test 206 will no longer be given invalid + files. + 2005-05-11 Nathaniel Smith * work.cc (build_deletions): Disable delete_dir. --- testsuite.at +++ testsuite.at @@ -291,9 +291,13 @@ AT_CHECK(echo $UNGZ_COMMAND, [], [ignore], [ignore]) ]) m4_define([UNGZ], [AT_CHECK( -eval $UNGZ_COMMAND <$1 >$2 if test "$OSTYPE" == "msys"; then - dos2unix -q -o $2 + if test "$1" != "$2.gz"; then + mv $1 $2.gz + fi + gunzip $2.gz +else + eval $UNGZ_COMMAND <$1 >$2 fi )])