summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorMike McGreevy <mamcgree@hdfgroup.org>2008-08-21 21:54:44 (GMT)
committerMike McGreevy <mamcgree@hdfgroup.org>2008-08-21 21:54:44 (GMT)
commit5a50fca18dd2ffd58160c38486cc4f0de8fdc460 (patch)
treec3641352ff45ae108d17a48e181be8effc68140d /configure
parenta3349271e9d9bccf269c1d88140167c6db405f68 (diff)
downloadhdf5-5a50fca18dd2ffd58160c38486cc4f0de8fdc460.zip
hdf5-5a50fca18dd2ffd58160c38486cc4f0de8fdc460.tar.gz
hdf5-5a50fca18dd2ffd58160c38486cc4f0de8fdc460.tar.bz2
[svn-r15514] Purpose:
- EOA logging update Description: - EOA values will now be written to the journal file in their own transaction when the EOA changes. - The EOA will be udpated in the HDF5 file's superblock before the recovery process begins. This should prevent some loss of raw data as the file won't be getting truncated upon file open as it will read the correct EOA value from the superblock. - Removed storing of EOA in journal entry messages since they're in their own transaction. - Updated tests to reflect change of transaction formats. Regenerated smoke test files to account for new entry types, and tweaked transaction number tests to reflect change in size of journal entries. - Large testfiles (in test/testfiles) should now unzip when ./configure is run. - When journal file is supplied but contains no complete transactions, instead of reporting an error, h5recover now informs the user of said nonexistant transactions, and opens/closes the hdf5 file with the journal recovered flag set. - Other various organizational changes to h5recover, included a bit more added to verbose output. Tested: - kagiso, smirom
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure11
1 files changed, 10 insertions, 1 deletions
diff --git a/configure b/configure
index 3f9b53b..34360c3 100755
--- a/configure
+++ b/configure
@@ -1,5 +1,5 @@
#! /bin/sh
-# From configure.in Id: configure.in 15300 2008-06-30 19:05:39Z koziol .
+# From configure.in Id: configure.in 15369 2008-07-15 22:03:33Z acheng .
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.61 for HDF5 1.9.8-metadata_journaling1.
#
@@ -50520,6 +50520,15 @@ echo "$as_me: error: Removing old public API symbols not allowed when using them
{ (exit 1); exit 1; }; }
fi
+{ echo "$as_me:$LINENO: checking for and unzipping large test files" >&5
+echo $ECHO_N "checking for and unzipping large test files... $ECHO_C" >&6; }
+for f in $srcdir/test/testfiles/*.gz; do
+ if test -f $f; then
+ gunzip -f $f
+ fi
+done
+{ echo "$as_me:$LINENO: result: done" >&5
+echo "${ECHO_T}done" >&6; }
{ echo "$as_me:$LINENO: checking Whether to perform strict file format checks" >&5