* OESS-98 fix tools test for plugins * sync fork * Merge of changes from dev * Move problem option to bottom of the list until fixed * HDFFV-11106 - fix parsing optional args * HDFFV-11106 add note * grammer fix * Whitespace after clang formatting * Undo format version 11 changes * Update check to working version * Merge workflow and minor changes from develop * Update supported platforms * PR#3 merge from develop * Merge gcc 10 diagnostics option from develop * Merge #318 OSX changes from develop * Merge serval small changes from dev * fix typo * Minor non-space formatting changes * GH #386 copyright corrections for java folder * revert because logic requires false return * Merges from develop #358 patches from vtk #361 fix header guard spelling * Remove case statement for H5I_EVENTSET * Correct call with versioning * Remove tabs * Double underscore change * Merges from develop #340 clang -Wformat-security warnings #360 Fixed uninitialized warnings Remove more underscores from header guards * Merge #380 from develop * Correct date entry * Split format source and commit changes on repo push * remove pre-split setting * Change windows TS to use older VS. * HDFFV-11212 JNI export util and Javadoc * Suggested review changes * Another change found * Committing clang-format changes * Some Javadoc warning fixes * Committing clang-format changes * Updated javadoc fixes * HDFFV-11228/9 merges from develop * remove obsolete debug comment * Fix conflict * HDFFV-11229 merge changes from develop * HDFFV-11229 merge second compare from develop * HDFFV-11229 fix reference file * HDFFV-11229 update autotools test script for two ref files * HDFFV-11229 merge dev changes for long double display in tools * Committing clang-format changes * Update with changes from develop Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
105 lines
2.7 KiB
Makefile
105 lines
2.7 KiB
Makefile
#
|
|
# Copyright by The HDF Group.
|
|
# All rights reserved.
|
|
#
|
|
# This file is part of HDF5. The full HDF5 copyright notice, including
|
|
# terms governing use, modification, and redistribution, is contained in
|
|
# the COPYING file, which can be found at the root of the source code
|
|
# distribution tree, or in https://www.hdfgroup.org/licenses.
|
|
# If you do not have access to either file, you may request a copy from
|
|
# help@hdfgroup.org.
|
|
##
|
|
## Makefile.am
|
|
## Run automake to generate a Makefile.in from this file.
|
|
##
|
|
#
|
|
# HDF5 Java native interface (JNI) Library Test Makefile(.in)
|
|
|
|
include $(top_srcdir)/config/commence.am
|
|
|
|
# Mark this directory as part of the JNI API
|
|
JAVA_API=yes
|
|
|
|
JAVAROOT = .classes
|
|
|
|
classes:
|
|
test -d $(@D)/$(JAVAROOT) || $(MKDIR_P) $(@D)/$(JAVAROOT)
|
|
|
|
pkgpath = test
|
|
hdfjarfile = jar$(PACKAGE_TARNAME)-$(PACKAGE_VERSION).jar
|
|
CLASSPATH_ENV=CLASSPATH=.:$(JAVAROOT):$(top_builddir)/java/src/$(hdfjarfile):$(top_srcdir)/java/lib/junit.jar:$(top_srcdir)/java/lib/hamcrest-core.jar:$(top_srcdir)/java/lib/slf4j-api-1.7.25.jar:$(top_srcdir)/java/lib/ext/slf4j-simple-1.7.25.jar:$$CLASSPATH
|
|
|
|
jarfile = jar$(PACKAGE_TARNAME)test.jar
|
|
|
|
AM_JAVACFLAGS = $(H5_JAVACFLAGS) -deprecation
|
|
|
|
TESTPACKAGE =
|
|
|
|
noinst_JAVA = \
|
|
TestH5.java \
|
|
TestH5Eparams.java \
|
|
TestH5Eregister.java \
|
|
TestH5Fparams.java \
|
|
TestH5Fbasic.java \
|
|
TestH5F.java \
|
|
TestH5Fswmr.java \
|
|
TestH5Gbasic.java \
|
|
TestH5G.java \
|
|
TestH5Sbasic.java \
|
|
TestH5S.java \
|
|
TestH5Tparams.java \
|
|
TestH5Tbasic.java \
|
|
TestH5T.java \
|
|
TestH5Dparams.java \
|
|
TestH5D.java \
|
|
TestH5Drw.java \
|
|
TestH5Dplist.java \
|
|
TestH5Lparams.java \
|
|
TestH5Lbasic.java \
|
|
TestH5Lcreate.java \
|
|
TestH5R.java \
|
|
TestH5Rref.java \
|
|
TestH5P.java \
|
|
TestH5PData.java \
|
|
TestH5Pfapl.java \
|
|
TestH5Pfaplhdfs.java \
|
|
TestH5Pfapls3.java \
|
|
TestH5Pvirtual.java \
|
|
TestH5Plist.java \
|
|
TestH5A.java \
|
|
TestH5Arw.java \
|
|
TestH5Oparams.java \
|
|
TestH5Obasic.java \
|
|
TestH5Ocreate.java \
|
|
TestH5Ocopy.java \
|
|
TestH5PL.java \
|
|
TestH5VL.java \
|
|
TestH5Z.java \
|
|
TestH5E.java \
|
|
TestH5Edefault.java \
|
|
TestH5Giterate.java
|
|
|
|
$(jarfile): classnoinst.stamp classes
|
|
$(JAR) cvf $@ -C $(JAVAROOT)/ $(pkgpath)
|
|
|
|
noinst_DATA = $(jarfile)
|
|
|
|
.PHONY: classes
|
|
|
|
# Test with just the native connector, with a single pass-through connector
|
|
# and with a doubly-stacked pass-through.
|
|
VOL_LIST = native "pass_through under_vol=0;under_info={}" \
|
|
"pass_through under_vol=505;under_info={under_vol=0;under_info={}}"
|
|
|
|
check_SCRIPTS = junit.sh
|
|
TEST_SCRIPT = $(check_SCRIPTS)
|
|
|
|
CLEANFILES = classnoinst.stamp $(jarfile) $(JAVAROOT)/$(pkgpath)/*.class junit.sh
|
|
|
|
clean:
|
|
rm -rf $(JAVAROOT)/*
|
|
rm -f $(jarfile)
|
|
rm -f classnoinst.stamp
|
|
|
|
include $(top_srcdir)/config/conclude.am
|