summaryrefslogtreecommitdiffstats
path: root/test/test_plugin.sh.in
Commit message (Collapse)AuthorAgeFilesLines
* Plugin test cleanup (#1479)Dana Robinson2022-03-101-0/+140
| | | | | | | | | | | * Autotools plugin test cleanup * Combines filter, VFD, and VOL plugin tests * Adds VFD plugin tests to the Autotools * Implements a uniform shell script naming scheme in test/ * codespell fix * Changes after code review
* Plugin test reworkDana Robinson2017-11-091-113/+0
| | | | Cleanup of plugin test code. Renames many files. Prep for VOL branch merge.
* Merge pull request #426 in HDFFV/hdf5 from ~LRKNOX/hdf5_lrk:hdf5_1_10 to ↵Larry Knox2017-04-251-11/+9
| | | | | | | | | | hdf5_1_10 * commit '54957d37f5aa73912763dbb6e308555e863c43f4': Commit copyright header change for src/H5PLpkg.c which was added after running script to make changes. Add new files in release_docs to MANIFEST. Cimmit changes to Makefile.in(s) and H5PL.c that resulted from running autogen.sh. Merge pull request #407 in HDFFV/hdf5 from ~LRKNOX/hdf5_lrk:hdf5_1_10_1 to hdf5_1_10_1 Change copyright headers to replace url referring to file to be removed and replace it with new url for COPYING file.
* Revert HDFFV-9655 by disabling test and not using new function.Allen Byrne2017-04-241-6/+9
|
* Fix path to actual executable locationAllen Byrne2017-04-241-12/+13
|
* Comment out failing plugin test until fixed (unexpected .libs in plugin test ↵lrknox2017-04-221-11/+11
| | | | directory path with '@').
* HDFFV-9655 fix compile and testAllen Byrne2017-04-211-12/+21
|
* [svn-r30245] remove incorrect copyAllen Byrne2016-08-011-6/+0
|
* [svn-r30240] JAVA-1920: Create a filter plugin test that has a filter which ↵Allen Byrne2016-08-011-2/+8
| | | | calls a HDF5 function.
* [svn-r27774] Description:Quincey Koziol2015-09-141-1/+1
| | | | | | | Correct test reset code in plugin code and fix typo in testing script. Tested on: Linux 2.6/32 (jam) w/serial
* [svn-r26036] HDFFV-8736: Patch H5PL.c and test for cygwin plugin support.Allen Byrne2015-01-261-2/+10
| | | | Tested: local linux and cygwin
* [svn-r24392] Cleanup testfiles from scripts. Update lists of files to be ↵Allen Byrne2013-11-011-1/+2
| | | | | | cleaned. CMake update to clean testfiles. Tested: local cmake, autools, and h5committest
* [svn-r23536] I corrected the copyright information and added some comment in ↵Raymond Lu2013-04-031-17/+11
| | | | | | H5Pocpl.c. Tested on jam - no code change.
* [svn-r23526] Bug fix: Mac system has dynamic library name in the form of ↵Albert Cheng2013-04-021-3/+17
| | | | | | | | | | | | | | | | | | libxyz.dylib. Changed test_plugin.in to copy library file names in the form of libdynlib{123].*. Another problem: Even when copy failed in copying the libray files (was in the form of *.so*), the test still passed. That was because .libs was included in $HDF5_PLUGIN_PATH and the needed plug in libraries were generated there. Fixed by copying the plug in library files to separate directories and seetup HDF5_PLUGIN_PATH to include them but NOT .libs. Tested: used desycommittest (duck, emu, jam, koala, ostrich) plus cmakehdf5 in jam. The cmakehdf5 in jam reported a failure in Test #594: H5REPART-h5repart_test ....................................***Failed Since this failure could not be caused by my change in test_plugin.sh, I reported it to Allen and proceed to check this in.
* [svn-r23517] Rewrirte part of the script that copy the libdynlib libraries ↵Albert Cheng2013-04-021-5/+33
| | | | | | | | | and check for result. h5committested. (Cmake in Duck has errors but the error are not related to this change.
* [svn-r23494] I added another filter library dynlib2.c for plugin.c test. ↵Raymond Lu2013-03-291-5/+3
| | | | | | | | The test script moves the libdynlib2.so to /tmp then runs plugin.c. Tested on jam and koala.
* [svn-r23492] Bug fix:Albert Cheng2013-03-291-6/+13
| | | | | | | | | | | | Test was not checking error result. It basically return succeess to make check all the time. Fixed it so that it does check the return code of the test (plugin) and set nerror accordingly. It then exit 1 if there is any error detected. Test: use the desy committest to pass on jam, koala, ostrich, duck and emu. Also hand test by "rm test/.lib/libdynlib1* to verify the test script can indeed response to errors properly.
* [svn-r23465] I moved dynlib1.c to test/ directory and revised the ↵Raymond Lu2013-03-271-9/+1
| | | | | | | | Makefile.am in test/. I added the condition to skip plugin.c test when the library is built for static. Tested on jam, koala, and emu.
* [svn-r23380] Description:Quincey Koziol2013-03-191-2/+2
| | | | Review & cleanup code.
* [svn-r23350] I cleaned up some code and added comments for my previous ↵Raymond Lu2013-03-141-1/+4
| | | | | | checkin of the DESY project. Tested on koala.
* [svn-r23346] First commit for DESY project. It has the basic functionality ↵Raymond Lu2013-03-131-0/+57
of loading dynamically filter libraries and a simple test for it. Tested on koala.