| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Copyright Fix
Description:
Switched the copyright statements from the old, bad version to the
new version we got from the lawyers. Note: not every file was
changed. There are some files which have copyrights not to NCSA (see
the Stream VFD and some of the GIF conversion modules didn't have
copyrights, so I didn't know if they were from others or from us). I
left those alone. If others think they should be changed, please
feel free to do so.
Platforms tested:
Linux
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Bug Fix
Description:
Some platforms *cough*AIX*cough* couldn't handle spaces in the h5dump
hyperslab script. It's okay if it was on the commandline, but when
it's in a script which is run through make which is run through poe,
ad infinitum, it failed because the quotes were being stripped off.
Solution:
Instead of spaces, use ',' to separate them.
Platforms tested:
Linux
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Fix and Code Removal
Description:
Back ported fix for the problem with >1024byte object names in the
h5dumper.
Removed the testfiles which were HDF4 specific.
Solution:
Changed the way the object name was being allocated from a static
array size to a dynamically allocated address...
Platforms tested:
Linux
|
|
|
|
|
|
|
|
|
|
| |
Test Add
Description:
Added the h5dump --filedriver tests to the 1.4 branch. Also added the
h5dump subsetting tests to 1.4 branch as they weren't there before
*doh*!
Platforms tested:
Linux
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Purpose:
feature add
Description:
Added ability to h5dumper to dump Group comments.
Solution:
Stole the code from h5ls that does this and put it into the h5dumper
code. Modified the DDL to reflect the newest change. Added a testcase
(tgrp_comments.*) to test that it's actually doing the comments
correctly.
Small modification to H5G.c. The error comment should have said that
it couldn't "get" the comment instead of "set" the comment...
Platforms tested:
Dangermouse, Kelgai, Modi4
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Improvement
Description:
The stdout and stderr were both redirected to an output file. This
works fine in tradition sequential Unix machines. But in some
parallel systems (like mpi-jobs in IBM SP), the stderr is merged
with stdout alright but not in the exact order as expected. This
is not deterministic in parallel jobs. So, the test output are
all there but the ordering maynot be as expected.
Solution:
Redirect stderr to separated file and append it to the stdout
file after test-command is executed. Then compare it with
the expected output. This eliminate the assumption that
stdout and stderr must merged in "chronical orders".
Platforms tested:
eirene (serial, mpich), modi4 parallel, tflops parallel, Blue parallel.
|
|
|