summaryrefslogtreecommitdiffstats
path: root/test/test_usecases.sh.in
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r24663] Implementation for H5Ocork, H5Ouncork, H5Ois_corked public ↵Vailin Choi2014-01-291-0/+8
| | | | | | | | | routines. Tested on jam, koala, ostrich, platypus. PENDING: (1) Code review. (2) More work on tests, comments, cache related work.
* [svn-r24299] Merge r24294 and r24295 from branches/revise_chunks.Albert Cheng2013-10-151-2/+24
| | | | | | | | | | | twriteorder.c: Add option parsing support to allow running with different parameter values. test_usecases.sh.in: Add the write order test here temporary. Need to move it to a permenant place later. tested: koala
* [svn-r23848] Bug fix:Albert Cheng2013-06-291-1/+1
| | | | | | | | The script execute the program by just $program which will not work if the user does not have "." in the $PATH. Changed it to "./$program" to avoid this problem. Tested: koala.
* [svn-r23775] Implement SWMR-5:Albert Cheng2013-06-141-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Implemented use case 1.9: Appending n-1 dimensional planes Adding the option "-y" which allows chunks to be thicker (more than 1 plane). This supports use case 1.9 which have chunks of multiple planes but writing is still appending one plane at a time. Using -y with "use_append_chunk", would provide the use case of writing a plane to a partial chunk. Using -y with "use_append_mchunks", would provide the use case of writing a plane to multiple partial chunks. Also added the option -n which specifies how many planes to write instead of the defaults of chunksize number of planes. This allows the final dataset to be other than a cube. test/use_append_mchunks.c: test/use_common.c: test/use.h: test/use_append_chunk.c: I also overhauled code in use_append_mchunks and use_append_chunk: 1. creating a set_parameter() to customize individual use case; 2. combine the create_uc_file(), read_uc_file() and write_uc_file() of both use cases appending one plane per chunks and one plane per multiple chunks. Moved these combined create/read/write functions into use_common.c to make future modification and maintence easier. test/test_usecases.sh.in: Added a simple test to demonstarte how to use -y to run use case 1.9. Tested: h5committest, except cmake, passed. Hand tested in Koala for various options.
* [svn-r23760] Implement SWMR-5:Albert Cheng2013-06-121-1/+5
| | | | | | | | | | | | | | | | Implemented use case 1.8 program--SWRM read/write multiple chunks at a time. test/use_append_mchunks.c: The program. test/Makefile.am: test/Makefile.in: Added program use_append_mchunks. test/test_usecases.sh.in: Added simple tests for use_append_mchunks. MANIFEST: Updated for new file. Tested: h5committest, except cmake, passed. Hand tested in Koala for various options.
* [svn-r23727] Added test/test_usecases.sh for testing use cases.Albert Cheng2013-06-021-0/+119
Tested: h5committest.