diff options
author | Robb Matzke <matzke@llnl.gov> | 1998-11-25 17:21:21 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1998-11-25 17:21:21 (GMT) |
commit | ffcbc32d669a0aabae30ed554a2a10446e69d25d (patch) | |
tree | e8e3b0648004b21b900b37ee0da48034d74e662f /test/h5test.c | |
parent | 37ce8f33ca1bc4361426b5374a12926b98839b13 (diff) | |
download | hdf5-ffcbc32d669a0aabae30ed554a2a10446e69d25d.zip hdf5-ffcbc32d669a0aabae30ed554a2a10446e69d25d.tar.gz hdf5-ffcbc32d669a0aabae30ed554a2a10446e69d25d.tar.bz2 |
[svn-r952] Changes since 19981125
----------------------
./doc/html/Datatypes.html
./src/H5.c
./src/H5T.c
./src/H5Tconv.c
./src/H5Tpkg.h
./src/H5Tpublic.h
./src/H5detect.c
./test/chunk.c
./test/dtypes.c
./test/h5test.c
./test/mtime.c
./test/tattr.c
./test/th5s.c
./tools/h5dump.c
./tools/h5dumputil.c
./tools/h5import.c
./tools/h5ls.c
./tools/h5toh4.c
./tools/h5tools.c
Renamed the old H5T_NATIVE_CHAR type to H5T_NATIVE_SCHAR to
denote that it is always signed.
Added a new H5T_NATIVE_CHAR type which has the same range,
representation, and behavior as either H5T_NATIVE_SCHAR or
H5T_NATIVE_UCHAR depending on the compiler and its
command-line switches for the application source file which
references H5T_NATIVE_CHAR. If source files are compiled with
different switches then each source file will resolve
H5T_NATIVE_CHAR appropriately so it matches the C type `char'
in that source file.
NOTE: THERE ARE OTHER DOCUMENTATION FILES THAT I DIDN'T CHANGE
BECAUSE I CAN'T MODIFY THE SOURCE.
./test/extend.c
Swapped two lines to prevent diagnostic messages from messing
up the formatted output.
Diffstat (limited to 'test/h5test.c')
-rw-r--r-- | test/h5test.c | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/test/h5test.c b/test/h5test.c index f124e0e..3a08eab 100644 --- a/test/h5test.c +++ b/test/h5test.c @@ -317,17 +317,17 @@ h5_fileaccess(void) void h5_no_hwconv(void) { - H5Tunregister(H5T_conv_char_uchar); - H5Tunregister(H5T_conv_char_short); - H5Tunregister(H5T_conv_char_ushort); - H5Tunregister(H5T_conv_char_int); - H5Tunregister(H5T_conv_char_uint); - H5Tunregister(H5T_conv_char_long); - H5Tunregister(H5T_conv_char_ulong); - H5Tunregister(H5T_conv_char_llong); - H5Tunregister(H5T_conv_char_ullong); + H5Tunregister(H5T_conv_schar_uchar); + H5Tunregister(H5T_conv_schar_short); + H5Tunregister(H5T_conv_schar_ushort); + H5Tunregister(H5T_conv_schar_int); + H5Tunregister(H5T_conv_schar_uint); + H5Tunregister(H5T_conv_schar_long); + H5Tunregister(H5T_conv_schar_ulong); + H5Tunregister(H5T_conv_schar_llong); + H5Tunregister(H5T_conv_schar_ullong); - H5Tunregister(H5T_conv_uchar_char); + H5Tunregister(H5T_conv_uchar_schar); H5Tunregister(H5T_conv_uchar_short); H5Tunregister(H5T_conv_uchar_ushort); H5Tunregister(H5T_conv_uchar_int); @@ -337,7 +337,7 @@ h5_no_hwconv(void) H5Tunregister(H5T_conv_uchar_llong); H5Tunregister(H5T_conv_uchar_ullong); - H5Tunregister(H5T_conv_short_char); + H5Tunregister(H5T_conv_short_schar); H5Tunregister(H5T_conv_short_uchar); H5Tunregister(H5T_conv_short_ushort); H5Tunregister(H5T_conv_short_int); @@ -347,7 +347,7 @@ h5_no_hwconv(void) H5Tunregister(H5T_conv_short_llong); H5Tunregister(H5T_conv_short_ullong); - H5Tunregister(H5T_conv_ushort_char); + H5Tunregister(H5T_conv_ushort_schar); H5Tunregister(H5T_conv_ushort_uchar); H5Tunregister(H5T_conv_ushort_short); H5Tunregister(H5T_conv_ushort_int); @@ -357,7 +357,7 @@ h5_no_hwconv(void) H5Tunregister(H5T_conv_ushort_llong); H5Tunregister(H5T_conv_ushort_ullong); - H5Tunregister(H5T_conv_int_char); + H5Tunregister(H5T_conv_int_schar); H5Tunregister(H5T_conv_int_uchar); H5Tunregister(H5T_conv_int_short); H5Tunregister(H5T_conv_int_ushort); @@ -367,7 +367,7 @@ h5_no_hwconv(void) H5Tunregister(H5T_conv_int_llong); H5Tunregister(H5T_conv_int_ullong); - H5Tunregister(H5T_conv_uint_char); + H5Tunregister(H5T_conv_uint_schar); H5Tunregister(H5T_conv_uint_uchar); H5Tunregister(H5T_conv_uint_short); H5Tunregister(H5T_conv_uint_ushort); @@ -377,7 +377,7 @@ h5_no_hwconv(void) H5Tunregister(H5T_conv_uint_llong); H5Tunregister(H5T_conv_uint_ullong); - H5Tunregister(H5T_conv_long_char); + H5Tunregister(H5T_conv_long_schar); H5Tunregister(H5T_conv_long_uchar); H5Tunregister(H5T_conv_long_short); H5Tunregister(H5T_conv_long_ushort); @@ -387,7 +387,7 @@ h5_no_hwconv(void) H5Tunregister(H5T_conv_long_llong); H5Tunregister(H5T_conv_long_ullong); - H5Tunregister(H5T_conv_ulong_char); + H5Tunregister(H5T_conv_ulong_schar); H5Tunregister(H5T_conv_ulong_uchar); H5Tunregister(H5T_conv_ulong_short); H5Tunregister(H5T_conv_ulong_ushort); @@ -397,7 +397,7 @@ h5_no_hwconv(void) H5Tunregister(H5T_conv_ulong_llong); H5Tunregister(H5T_conv_ulong_ullong); - H5Tunregister(H5T_conv_llong_char); + H5Tunregister(H5T_conv_llong_schar); H5Tunregister(H5T_conv_llong_uchar); H5Tunregister(H5T_conv_llong_short); H5Tunregister(H5T_conv_llong_ushort); @@ -407,7 +407,7 @@ h5_no_hwconv(void) H5Tunregister(H5T_conv_llong_ulong); H5Tunregister(H5T_conv_llong_ullong); - H5Tunregister(H5T_conv_ullong_char); + H5Tunregister(H5T_conv_ullong_schar); H5Tunregister(H5T_conv_ullong_uchar); H5Tunregister(H5T_conv_ullong_short); H5Tunregister(H5T_conv_ullong_ushort); |