mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
HDFFV-9994 add UD tests for tools
This commit is contained in:
parent
be260bbf75
commit
406db26f51
10
MANIFEST
10
MANIFEST
@ -1201,6 +1201,7 @@
|
||||
./tools/src/h5dump/h5dump_xml.c
|
||||
./tools/src/h5dump/h5dump_xml.h
|
||||
./tools/test/h5dump/Makefile.am
|
||||
./tools/test/h5dump/dynlib_dump.c
|
||||
./tools/test/h5dump/h5dumpgentest.c
|
||||
./tools/test/h5dump/testh5dump.sh.in
|
||||
./tools/test/h5dump/testh5dumppbits.sh.in
|
||||
@ -1273,6 +1274,7 @@
|
||||
./tools/src/h5diff/h5diff_main.c
|
||||
./tools/src/h5diff/ph5diff_main.c
|
||||
./tools/test/h5diff/Makefile.am
|
||||
./tools/test/h5diff/dynlib_diff.c
|
||||
./tools/test/h5diff/h5diffgentest.c
|
||||
./tools/test/h5diff/testh5diff.sh.in
|
||||
./tools/test/h5diff/testph5diff.sh.in
|
||||
@ -1354,6 +1356,7 @@
|
||||
./tools/src/h5ls/Makefile.am
|
||||
./tools/src/h5ls/h5ls.c
|
||||
./tools/test/h5ls/Makefile.am
|
||||
./tools/test/h5ls/dynlib_ls.c
|
||||
./tools/test/h5ls/testh5ls.sh.in
|
||||
./tools/test/h5ls/testh5lsvds.sh.in
|
||||
|
||||
@ -1738,6 +1741,9 @@
|
||||
./tools/testfiles/tstring2.ddl
|
||||
./tools/testfiles/tstringe.ddl
|
||||
./tools/testfiles/tszip.ddl
|
||||
./tools/testfiles/tudfilter.ddl
|
||||
./tools/testfiles/tudfilter.h5
|
||||
./tools/testfiles/tudfilter.ls
|
||||
./tools/testfiles/tudlink.h5
|
||||
./tools/testfiles/tudlink.h5.xml
|
||||
./tools/testfiles/tudlink-1.ddl
|
||||
@ -2310,6 +2316,10 @@
|
||||
./tools/test/h5diff/testfiles/tmptest.he5
|
||||
./tools/test/h5diff/testfiles/h5diff_tmp2.txt
|
||||
./tools/test/h5diff/testfiles/tmpSingleSiteBethe.output.h5
|
||||
./tools/test/h5diff/testfiles/tudfilter.h5
|
||||
./tools/test/h5diff/testfiles/tudfilter2.h5
|
||||
./tools/test/h5diff/testfiles/h5diff_ud.txt
|
||||
./tools/test/h5diff/testfiles/h5diff_udfail.txt
|
||||
#vds
|
||||
./tools/test/h5diff/testfiles/h5diff_v1.txt
|
||||
./tools/test/h5diff/testfiles/h5diff_v2.txt
|
||||
|
@ -19,4 +19,32 @@ INCLUDE_DIRECTORIES (${HDF5_TOOLS_DIR}/lib)
|
||||
#add_test (NAME h5diffgentest COMMAND $<TARGET_FILE:h5diffgentest>)
|
||||
endif ()
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# If plugin library tests can be tested
|
||||
#-----------------------------------------------------------------------------
|
||||
set (HDF5_TOOL_PLUGIN_LIB_CORENAME "dynlibdiff")
|
||||
set (HDF5_TOOL_PLUGIN_LIB_NAME "${HDF5_EXTERNAL_LIB_PREFIX}${HDF5_TOOL_PLUGIN_LIB_CORENAME}")
|
||||
set (HDF5_TOOL_PLUGIN_LIB_TARGET ${HDF5_TOOL_PLUGIN_LIB_CORENAME})
|
||||
add_definitions (${HDF_EXTRA_C_FLAGS})
|
||||
INCLUDE_DIRECTORIES (${HDF5_SRC_DIR})
|
||||
|
||||
add_library (${HDF5_TOOL_PLUGIN_LIB_TARGET} SHARED dynlib_diff.c)
|
||||
TARGET_C_PROPERTIES (${HDF5_TOOL_PLUGIN_LIB_TARGET} SHARED " " " ")
|
||||
target_link_libraries (${HDF5_TOOL_PLUGIN_LIB_TARGET} ${HDF5_TEST_LIB_TARGET})
|
||||
H5_SET_LIB_OPTIONS (${HDF5_TOOL_PLUGIN_LIB_TARGET} ${HDF5_TOOL_PLUGIN_LIB_NAME} SHARED ${HDF5_PACKAGE_SOVERSION})
|
||||
|
||||
# make plugins dir
|
||||
file (MAKE_DIRECTORY "${CMAKE_BINARY_DIR}/plugins")
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copy plugin library to a plugins folder
|
||||
#-----------------------------------------------------------------------------
|
||||
add_custom_command (
|
||||
TARGET ${HDF5_TOOL_PLUGIN_LIB_TARGET}
|
||||
POST_BUILD
|
||||
COMMAND ${CMAKE_COMMAND}
|
||||
ARGS -E copy_if_different
|
||||
"$<TARGET_FILE:${HDF5_TOOL_PLUGIN_LIB_TARGET}>"
|
||||
"${CMAKE_BINARY_DIR}/plugins/$<TARGET_FILE_NAME:${HDF5_TOOL_PLUGIN_LIB_TARGET}>"
|
||||
)
|
||||
|
||||
include (CMakeTests.cmake)
|
||||
|
@ -55,6 +55,8 @@
|
||||
${HDF5_TOOLS_TEST_H5DIFF_SOURCE_DIR}/testfiles/tmptest2.he5
|
||||
${HDF5_TOOLS_TEST_H5DIFF_SOURCE_DIR}/testfiles/tmpSingleSiteBethe.reference.h5
|
||||
${HDF5_TOOLS_TEST_H5DIFF_SOURCE_DIR}/testfiles/tmpSingleSiteBethe.output.h5
|
||||
${HDF5_TOOLS_TEST_H5DIFF_SOURCE_DIR}/testfiles/tudfilter.h5
|
||||
${HDF5_TOOLS_TEST_H5DIFF_SOURCE_DIR}/testfiles/tudfilter2.h5
|
||||
# tools/testfiles/vds
|
||||
${HDF5_TOOLS_DIR}/testfiles/vds/1_a.h5
|
||||
${HDF5_TOOLS_DIR}/testfiles/vds/1_b.h5
|
||||
@ -259,6 +261,8 @@
|
||||
${HDF5_TOOLS_TEST_H5DIFF_SOURCE_DIR}/testfiles/h5diff_90.txt
|
||||
${HDF5_TOOLS_TEST_H5DIFF_SOURCE_DIR}/testfiles/h5diff_tmp1.txt
|
||||
${HDF5_TOOLS_TEST_H5DIFF_SOURCE_DIR}/testfiles/h5diff_tmp2.txt
|
||||
${HDF5_TOOLS_TEST_H5DIFF_SOURCE_DIR}/testfiles/h5diff_ud.txt
|
||||
${HDF5_TOOLS_TEST_H5DIFF_SOURCE_DIR}/testfiles/h5diff_udfail.txt
|
||||
${HDF5_TOOLS_TEST_H5DIFF_SOURCE_DIR}/testfiles/h5diff_v1.txt
|
||||
${HDF5_TOOLS_TEST_H5DIFF_SOURCE_DIR}/testfiles/h5diff_v2.txt
|
||||
${HDF5_TOOLS_TEST_H5DIFF_SOURCE_DIR}/testfiles/h5diff_v3.txt
|
||||
@ -376,6 +380,51 @@
|
||||
endif ()
|
||||
ENDMACRO ()
|
||||
|
||||
MACRO (ADD_H5_UD_TEST testname resultcode resultfile)
|
||||
if (NOT HDF5_ENABLE_USING_MEMCHECKER)
|
||||
# Remove any output file left over from previous test run
|
||||
add_test (
|
||||
NAME H5DIFF_UD-${testname}-clearall-objects
|
||||
COMMAND ${CMAKE_COMMAND}
|
||||
-E remove
|
||||
testfiles/${resultfile}.out
|
||||
testfiles/${resultfile}.out.err
|
||||
)
|
||||
if (${resultcode} STREQUAL "2")
|
||||
add_test (
|
||||
NAME H5DIFF_UD-${testname}
|
||||
COMMAND "${CMAKE_COMMAND}"
|
||||
-D "TEST_PROGRAM=$<TARGET_FILE:h5diff>"
|
||||
-D "TEST_ARGS:STRING=${ARGN}"
|
||||
-D "TEST_FOLDER=${PROJECT_BINARY_DIR}/testfiles"
|
||||
-D "TEST_OUTPUT=${resultfile}.out"
|
||||
-D "TEST_EXPECT=${resultcode}"
|
||||
-D "TEST_REFERENCE=${resultfile}.txt"
|
||||
-D "TEST_APPEND=EXIT CODE:"
|
||||
-D "TEST_ENV_VAR=HDF5_PLUGIN_PATH"
|
||||
-D "TEST_ENV_VALUE=${CMAKE_BINARY_DIR}"
|
||||
-P "${HDF_RESOURCES_EXT_DIR}/runTest.cmake"
|
||||
)
|
||||
else ()
|
||||
add_test (
|
||||
NAME H5DIFF_UD-${testname}
|
||||
COMMAND "${CMAKE_COMMAND}"
|
||||
-D "TEST_PROGRAM=$<TARGET_FILE:h5diff>"
|
||||
-D "TEST_ARGS:STRING=${ARGN}"
|
||||
-D "TEST_FOLDER=${PROJECT_BINARY_DIR}/testfiles"
|
||||
-D "TEST_OUTPUT=${resultfile}.out"
|
||||
-D "TEST_EXPECT=${resultcode}"
|
||||
-D "TEST_REFERENCE=${resultfile}.txt"
|
||||
-D "TEST_APPEND=EXIT CODE:"
|
||||
-D "TEST_ENV_VAR=HDF5_PLUGIN_PATH"
|
||||
-D "TEST_ENV_VALUE=${CMAKE_BINARY_DIR}/plugins"
|
||||
-P "${HDF_RESOURCES_EXT_DIR}/runTest.cmake"
|
||||
)
|
||||
endif ()
|
||||
set_tests_properties (H5DIFF_UD-${testname} PROPERTIES DEPENDS H5DIFF_UD-${testname}-clearall-objects)
|
||||
endif ()
|
||||
ENDMACRO ()
|
||||
|
||||
##############################################################################
|
||||
##############################################################################
|
||||
### T H E T E S T S ###
|
||||
@ -1393,3 +1442,8 @@ ADD_H5_TEST (h5diff_v1 0 -v ${FILEV1} ${FILEV2})
|
||||
ADD_H5_TEST (h5diff_v2 0 -r ${FILEV1} ${FILEV2})
|
||||
ADD_H5_TEST (h5diff_v3 0 -c ${FILEV1} ${FILEV2})
|
||||
|
||||
##############################################################################
|
||||
### P L U G I N T E S T S
|
||||
##############################################################################
|
||||
ADD_H5_UD_TEST (h5diff_plugin_test 0 h5diff_ud -v tudfilter.h5 tudfilter2.h5)
|
||||
ADD_H5_UD_TEST (h5diff_plugin_fail 2 h5diff_udfail -v tudfilter.h5 tudfilter2.h5)
|
||||
|
94
tools/test/h5diff/dynlib_diff.c
Normal file
94
tools/test/h5diff/dynlib_diff.c
Normal file
@ -0,0 +1,94 @@
|
||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||
* 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 files COPYING and Copyright.html. COPYING can be found at the root *
|
||||
* of the source code distribution tree; Copyright.html can be found at the *
|
||||
* root level of an installed copy of the electronic document set and is *
|
||||
* linked from the top-level documents page. It can also be found at *
|
||||
* http://hdfgroup.org/HDF5/doc/Copyright.html. If you do not have access *
|
||||
* to either file, you may request a copy from help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
/*
|
||||
* Programmer: Raymond Lu
|
||||
* 13 February 2013
|
||||
*
|
||||
* Purpose: Tests the plugin module (H5PL)
|
||||
*/
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include "H5PLextern.h"
|
||||
|
||||
#define H5Z_FILTER_DYNLIB2 258
|
||||
#define MULTIPLIER 3
|
||||
|
||||
static size_t H5Z_filter_dynlib2(unsigned int flags, size_t cd_nelmts,
|
||||
const unsigned int *cd_values, size_t nbytes, size_t *buf_size, void **buf);
|
||||
|
||||
/* This message derives from H5Z */
|
||||
const H5Z_class2_t H5Z_DYNLIB2[1] = {{
|
||||
H5Z_CLASS_T_VERS, /* H5Z_class_t version */
|
||||
H5Z_FILTER_DYNLIB2, /* Filter id number */
|
||||
1, 1, /* Encoding and decoding enabled */
|
||||
"dynlib2", /* Filter name for debugging */
|
||||
NULL, /* The "can apply" callback */
|
||||
NULL, /* The "set local" callback */
|
||||
(H5Z_func_t)H5Z_filter_dynlib2, /* The actual filter function */
|
||||
}};
|
||||
|
||||
H5PL_type_t H5PLget_plugin_type(void) {return H5PL_TYPE_FILTER;}
|
||||
const void *H5PLget_plugin_info(void) {return H5Z_DYNLIB2;}
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5Z_filter_dynlib2
|
||||
*
|
||||
* Purpose: A dynlib2 filter method that multiplies the original value
|
||||
* during write and divide the original value during read. It
|
||||
* will be built as a shared library. plugin.c test will load
|
||||
* and use this filter library.
|
||||
*
|
||||
* Return: Success: Data chunk size
|
||||
*
|
||||
* Failure: 0
|
||||
*
|
||||
* Programmer: Raymond Lu
|
||||
* 29 March 2013
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
static size_t
|
||||
H5Z_filter_dynlib2(unsigned int flags, size_t cd_nelmts,
|
||||
const unsigned int *cd_values, size_t nbytes,
|
||||
size_t *buf_size, void **buf)
|
||||
{
|
||||
int *int_ptr = (int *)*buf; /* Pointer to the data values */
|
||||
size_t buf_left = *buf_size; /* Amount of data buffer left to process */
|
||||
|
||||
/* Check for the correct number of parameters */
|
||||
if(cd_nelmts > 0)
|
||||
return(0);
|
||||
|
||||
/* Assignment to eliminate unused parameter warning. */
|
||||
cd_values = cd_values;
|
||||
|
||||
if(flags & H5Z_FLAG_REVERSE) { /*read*/
|
||||
/* Divide the original value with MULTIPLIER */
|
||||
while(buf_left > 0) {
|
||||
*int_ptr++ /= MULTIPLIER;
|
||||
buf_left -= sizeof(int);
|
||||
} /* end while */
|
||||
} /* end if */
|
||||
else { /*write*/
|
||||
/* Multiply the original value with MULTIPLIER */
|
||||
while(buf_left > 0) {
|
||||
*int_ptr++ *= MULTIPLIER;
|
||||
buf_left -= sizeof(int);
|
||||
} /* end while */
|
||||
} /* end else */
|
||||
|
||||
return nbytes;
|
||||
} /* end H5Z_filter_dynlib2() */
|
||||
|
11
tools/test/h5diff/testfiles/h5diff_ud.txt
Normal file
11
tools/test/h5diff/testfiles/h5diff_ud.txt
Normal file
@ -0,0 +1,11 @@
|
||||
|
||||
file1 file2
|
||||
---------------------------------------
|
||||
x x /
|
||||
x x /dynlib2
|
||||
|
||||
group : </> and </>
|
||||
0 differences found
|
||||
dataset: </dynlib2> and </dynlib2>
|
||||
0 differences found
|
||||
EXIT CODE: 0
|
12
tools/test/h5diff/testfiles/h5diff_udfail.txt
Normal file
12
tools/test/h5diff/testfiles/h5diff_udfail.txt
Normal file
@ -0,0 +1,12 @@
|
||||
|
||||
file1 file2
|
||||
---------------------------------------
|
||||
x x /
|
||||
x x /dynlib2
|
||||
|
||||
group : </> and </>
|
||||
0 differences found
|
||||
dataset: </dynlib2> and </dynlib2>
|
||||
0 differences found
|
||||
warning: dataset </dynlib2> cannot be read, user defined filter is not available
|
||||
EXIT CODE: 2
|
BIN
tools/test/h5diff/testfiles/tudfilter.h5
Normal file
BIN
tools/test/h5diff/testfiles/tudfilter.h5
Normal file
Binary file not shown.
BIN
tools/test/h5diff/testfiles/tudfilter2.h5
Normal file
BIN
tools/test/h5diff/testfiles/tudfilter2.h5
Normal file
Binary file not shown.
@ -6,6 +6,34 @@ PROJECT (HDF5_TOOLS_TEST_H5DUMP)
|
||||
#-----------------------------------------------------------------------------
|
||||
INCLUDE_DIRECTORIES (${HDF5_TOOLS_DIR}/lib)
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# If plugin library tests can be tested
|
||||
#-----------------------------------------------------------------------------
|
||||
set (HDF5_TOOL_PLUGIN_LIB_CORENAME "dynlibdump")
|
||||
set (HDF5_TOOL_PLUGIN_LIB_NAME "${HDF5_EXTERNAL_LIB_PREFIX}${HDF5_TOOL_PLUGIN_LIB_CORENAME}")
|
||||
set (HDF5_TOOL_PLUGIN_LIB_TARGET ${HDF5_TOOL_PLUGIN_LIB_CORENAME})
|
||||
add_definitions (${HDF_EXTRA_C_FLAGS})
|
||||
INCLUDE_DIRECTORIES (${HDF5_SRC_DIR})
|
||||
|
||||
add_library (${HDF5_TOOL_PLUGIN_LIB_TARGET} SHARED dynlib_dump.c)
|
||||
TARGET_C_PROPERTIES (${HDF5_TOOL_PLUGIN_LIB_TARGET} SHARED " " " ")
|
||||
target_link_libraries (${HDF5_TOOL_PLUGIN_LIB_TARGET} ${HDF5_TEST_LIB_TARGET})
|
||||
H5_SET_LIB_OPTIONS (${HDF5_TOOL_PLUGIN_LIB_TARGET} ${HDF5_TOOL_PLUGIN_LIB_NAME} SHARED ${HDF5_PACKAGE_SOVERSION})
|
||||
|
||||
# make plugins dir
|
||||
file (MAKE_DIRECTORY "${CMAKE_BINARY_DIR}/plugins")
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copy plugin library to a plugins folder
|
||||
#-----------------------------------------------------------------------------
|
||||
add_custom_command (
|
||||
TARGET ${HDF5_TOOL_PLUGIN_LIB_TARGET}
|
||||
POST_BUILD
|
||||
COMMAND ${CMAKE_COMMAND}
|
||||
ARGS -E copy_if_different
|
||||
"$<TARGET_FILE:${HDF5_TOOL_PLUGIN_LIB_TARGET}>"
|
||||
"${CMAKE_BINARY_DIR}/plugins/$<TARGET_FILE_NAME:${HDF5_TOOL_PLUGIN_LIB_TARGET}>"
|
||||
)
|
||||
|
||||
# --------------------------------------------------------------------
|
||||
# Add the h5dump test executable
|
||||
# --------------------------------------------------------------------
|
||||
|
@ -166,6 +166,7 @@
|
||||
${HDF5_TOOLS_DIR}/testfiles/tstring2.ddl
|
||||
${HDF5_TOOLS_DIR}/testfiles/tstringe.ddl
|
||||
${HDF5_TOOLS_DIR}/testfiles/tszip.ddl
|
||||
${HDF5_TOOLS_DIR}/testfiles/tudfilter.ddl
|
||||
${HDF5_TOOLS_DIR}/testfiles/tudlink-1.ddl
|
||||
${HDF5_TOOLS_DIR}/testfiles/tudlink-2.ddl
|
||||
${HDF5_TOOLS_DIR}/testfiles/tuserfilter.ddl
|
||||
@ -291,6 +292,7 @@
|
||||
${HDF5_TOOLS_DIR}/testfiles/tstr.h5
|
||||
${HDF5_TOOLS_DIR}/testfiles/tstr2.h5
|
||||
${HDF5_TOOLS_DIR}/testfiles/tstr3.h5
|
||||
${HDF5_TOOLS_DIR}/testfiles/tudfilter.h5
|
||||
${HDF5_TOOLS_DIR}/testfiles/tudlink.h5
|
||||
${HDF5_TOOLS_DIR}/testfiles/tvldtypes1.h5
|
||||
${HDF5_TOOLS_DIR}/testfiles/tvldtypes2.h5
|
||||
@ -680,9 +682,36 @@
|
||||
endif ()
|
||||
ENDMACRO ()
|
||||
|
||||
MACRO (ADD_H5_UD_TEST testname resultcode resultfile)
|
||||
if (NOT HDF5_ENABLE_USING_MEMCHECKER)
|
||||
# Remove any output file left over from previous test run
|
||||
add_test (
|
||||
NAME H5DUMP_UD-${testname}-clearall-objects
|
||||
COMMAND ${CMAKE_COMMAND}
|
||||
-E remove
|
||||
testfiles/std/${resultfile}.out
|
||||
testfiles/std/${resultfile}.out.err
|
||||
)
|
||||
add_test (
|
||||
NAME H5DUMP_UD-${testname}
|
||||
COMMAND "${CMAKE_COMMAND}"
|
||||
-D "TEST_PROGRAM=$<TARGET_FILE:h5dump>"
|
||||
-D "TEST_ARGS:STRING=${ARGN}"
|
||||
-D "TEST_FOLDER=${PROJECT_BINARY_DIR}/testfiles/std"
|
||||
-D "TEST_OUTPUT=${resultfile}.out"
|
||||
-D "TEST_EXPECT=${resultcode}"
|
||||
-D "TEST_REFERENCE=${resultfile}.ddl"
|
||||
-D "TEST_ENV_VAR=HDF5_PLUGIN_PATH"
|
||||
-D "TEST_ENV_VALUE=${CMAKE_BINARY_DIR}/plugins"
|
||||
-P "${HDF_RESOURCES_EXT_DIR}/runTest.cmake"
|
||||
)
|
||||
set_tests_properties (H5DUMP_UD-${testname} PROPERTIES DEPENDS H5DUMP_UD-${testname}-clearall-objects)
|
||||
endif ()
|
||||
ENDMACRO ()
|
||||
|
||||
##############################################################################
|
||||
##############################################################################
|
||||
### T H E T E S T S HDF5_ENABLE_USING_MEMCHECKER ###
|
||||
### T H E T E S T S ###
|
||||
##############################################################################
|
||||
##############################################################################
|
||||
|
||||
@ -1421,3 +1450,8 @@
|
||||
|
||||
# test for non-existing file
|
||||
ADD_H5_TEST (non_existing 1 --enable-error-stack tgroup.h5 non_existing.h5)
|
||||
|
||||
##############################################################################
|
||||
### P L U G I N T E S T S
|
||||
##############################################################################
|
||||
ADD_H5_UD_TEST (h5dump_plugin_test 0 tudfilter --enable-error-stack tudfilter.h5)
|
||||
|
94
tools/test/h5dump/dynlib_dump.c
Normal file
94
tools/test/h5dump/dynlib_dump.c
Normal file
@ -0,0 +1,94 @@
|
||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||
* 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 files COPYING and Copyright.html. COPYING can be found at the root *
|
||||
* of the source code distribution tree; Copyright.html can be found at the *
|
||||
* root level of an installed copy of the electronic document set and is *
|
||||
* linked from the top-level documents page. It can also be found at *
|
||||
* http://hdfgroup.org/HDF5/doc/Copyright.html. If you do not have access *
|
||||
* to either file, you may request a copy from help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
/*
|
||||
* Programmer: Raymond Lu
|
||||
* 13 February 2013
|
||||
*
|
||||
* Purpose: Tests the plugin module (H5PL)
|
||||
*/
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include "H5PLextern.h"
|
||||
|
||||
#define H5Z_FILTER_DYNLIB2 258
|
||||
#define MULTIPLIER 3
|
||||
|
||||
static size_t H5Z_filter_dynlib2(unsigned int flags, size_t cd_nelmts,
|
||||
const unsigned int *cd_values, size_t nbytes, size_t *buf_size, void **buf);
|
||||
|
||||
/* This message derives from H5Z */
|
||||
const H5Z_class2_t H5Z_DYNLIB2[1] = {{
|
||||
H5Z_CLASS_T_VERS, /* H5Z_class_t version */
|
||||
H5Z_FILTER_DYNLIB2, /* Filter id number */
|
||||
1, 1, /* Encoding and decoding enabled */
|
||||
"dynlib2", /* Filter name for debugging */
|
||||
NULL, /* The "can apply" callback */
|
||||
NULL, /* The "set local" callback */
|
||||
(H5Z_func_t)H5Z_filter_dynlib2, /* The actual filter function */
|
||||
}};
|
||||
|
||||
H5PL_type_t H5PLget_plugin_type(void) {return H5PL_TYPE_FILTER;}
|
||||
const void *H5PLget_plugin_info(void) {return H5Z_DYNLIB2;}
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5Z_filter_dynlib2
|
||||
*
|
||||
* Purpose: A dynlib2 filter method that multiplies the original value
|
||||
* during write and divide the original value during read. It
|
||||
* will be built as a shared library. plugin.c test will load
|
||||
* and use this filter library.
|
||||
*
|
||||
* Return: Success: Data chunk size
|
||||
*
|
||||
* Failure: 0
|
||||
*
|
||||
* Programmer: Raymond Lu
|
||||
* 29 March 2013
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
static size_t
|
||||
H5Z_filter_dynlib2(unsigned int flags, size_t cd_nelmts,
|
||||
const unsigned int *cd_values, size_t nbytes,
|
||||
size_t *buf_size, void **buf)
|
||||
{
|
||||
int *int_ptr = (int *)*buf; /* Pointer to the data values */
|
||||
size_t buf_left = *buf_size; /* Amount of data buffer left to process */
|
||||
|
||||
/* Check for the correct number of parameters */
|
||||
if(cd_nelmts > 0)
|
||||
return(0);
|
||||
|
||||
/* Assignment to eliminate unused parameter warning. */
|
||||
cd_values = cd_values;
|
||||
|
||||
if(flags & H5Z_FLAG_REVERSE) { /*read*/
|
||||
/* Divide the original value with MULTIPLIER */
|
||||
while(buf_left > 0) {
|
||||
*int_ptr++ /= MULTIPLIER;
|
||||
buf_left -= sizeof(int);
|
||||
} /* end while */
|
||||
} /* end if */
|
||||
else { /*write*/
|
||||
/* Multiply the original value with MULTIPLIER */
|
||||
while(buf_left > 0) {
|
||||
*int_ptr++ *= MULTIPLIER;
|
||||
buf_left -= sizeof(int);
|
||||
} /* end while */
|
||||
} /* end else */
|
||||
|
||||
return nbytes;
|
||||
} /* end H5Z_filter_dynlib2() */
|
||||
|
@ -114,6 +114,7 @@
|
||||
#define FILE81 "tints4dims.h5"
|
||||
#define FILE82 "tcompound_complex2.h5"
|
||||
#define FILE83 "tvlenstr_array.h5"
|
||||
#define FILE84 "tudfilter.h5"
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* prototypes
|
||||
@ -153,6 +154,23 @@ const H5Z_class2_t H5Z_MYFILTER[1] = {{
|
||||
myfilter, /* The actual filter function */
|
||||
}};
|
||||
|
||||
#define H5Z_FILTER_DYNLIB2 258
|
||||
#define MULTIPLIER 3
|
||||
|
||||
static size_t H5Z_filter_dynlib2(unsigned int flags, size_t cd_nelmts,
|
||||
const unsigned int *cd_values, size_t nbytes, size_t *buf_size, void **buf);
|
||||
|
||||
/* This message derives from H5Z */
|
||||
const H5Z_class2_t H5Z_DYNLIB2[1] = {{
|
||||
H5Z_CLASS_T_VERS, /* H5Z_class_t version */
|
||||
H5Z_FILTER_DYNLIB2, /* Filter id number */
|
||||
1, 1, /* Encoding and decoding enabled */
|
||||
"dynlib2", /* Filter name for debugging */
|
||||
NULL, /* The "can apply" callback */
|
||||
NULL, /* The "set local" callback */
|
||||
(H5Z_func_t)H5Z_filter_dynlib2, /* The actual filter function */
|
||||
}};
|
||||
|
||||
|
||||
/* A UD link traversal function. Shouldn't actually be called. */
|
||||
static hid_t UD_traverse(H5_ATTR_UNUSED const char * link_name, H5_ATTR_UNUSED hid_t cur_group,
|
||||
@ -10286,6 +10304,118 @@ static void gent_vlenstr_array(void)
|
||||
H5Fclose(file);
|
||||
}
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: gent_udfilter
|
||||
*
|
||||
* Purpose: Generate a file to be used in testing user defined filter plugin3.
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
static void gent_udfilter(void)
|
||||
{
|
||||
hid_t fid; /* file id */
|
||||
hid_t dcpl; /* dataset creation property list */
|
||||
hid_t sid; /* dataspace ID */
|
||||
hid_t tid; /* datatype ID */
|
||||
|
||||
hsize_t dims1[RANK] = {DIM1,DIM2};
|
||||
hsize_t chunk_dims[RANK] = {CDIM1,CDIM2};
|
||||
int buf1[DIM1][DIM2];
|
||||
int i, j, n, ret;
|
||||
|
||||
for(i=n=0; i<DIM1; i++){
|
||||
for(j=0; j<DIM2; j++){
|
||||
buf1[i][j]=n++;
|
||||
}
|
||||
}
|
||||
|
||||
/* create a file */
|
||||
fid = H5Fcreate(FILE84, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT);
|
||||
HDassert(fid>=0);
|
||||
|
||||
/* create a space */
|
||||
sid = H5Screate_simple(SPACE2_RANK, dims1, NULL);
|
||||
|
||||
dcpl = H5Pcreate(H5P_DATASET_CREATE);
|
||||
HDassert(dcpl>=0);
|
||||
|
||||
ret = H5Pset_layout(dcpl, H5D_CHUNKED);
|
||||
HDassert(ret >= 0);
|
||||
|
||||
ret = H5Pset_chunk(dcpl, SPACE2_RANK, chunk_dims);
|
||||
HDassert(ret >= 0);
|
||||
|
||||
ret = H5Zregister (H5Z_DYNLIB2);
|
||||
HDassert(ret >= 0);
|
||||
|
||||
ret = H5Pset_filter (dcpl, H5Z_FILTER_DYNLIB2, H5Z_FLAG_MANDATORY, 0, NULL);
|
||||
HDassert(ret >= 0);
|
||||
|
||||
ret=make_dset(fid, "dynlib2", sid, H5T_NATIVE_INT, dcpl, buf1);
|
||||
HDassert(ret >= 0);
|
||||
|
||||
/* remove the filters from the dcpl */
|
||||
ret = H5Premove_filter(dcpl, H5Z_FILTER_ALL);
|
||||
HDassert(ret >= 0);
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* close
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
ret = H5Sclose(sid);
|
||||
HDassert(ret >= 0);
|
||||
|
||||
ret = H5Pclose(dcpl);
|
||||
HDassert(ret >= 0);
|
||||
|
||||
ret = H5Fclose(fid);
|
||||
HDassert(ret >= 0);
|
||||
}
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5Z_filter_dynlib2
|
||||
*
|
||||
* Purpose: A dynlib2 filter method that multiplies the original value
|
||||
* during write and divide the original value during read. It
|
||||
* will be built as a shared library. tools tests will load
|
||||
* and use this filter as a plugin library.
|
||||
*
|
||||
* Return: Success: Data chunk size
|
||||
*
|
||||
* Failure: 0
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
static size_t
|
||||
H5Z_filter_dynlib2(unsigned int flags, size_t cd_nelmts,
|
||||
const unsigned int *cd_values, size_t nbytes,
|
||||
size_t *buf_size, void **buf)
|
||||
{
|
||||
int *int_ptr = (int *)*buf; /* Pointer to the data values */
|
||||
size_t buf_left = *buf_size; /* Amount of data buffer left to process */
|
||||
|
||||
/* Check for the correct number of parameters */
|
||||
if(cd_nelmts > 0)
|
||||
return(0);
|
||||
|
||||
/* Assignment to eliminate unused parameter warning. */
|
||||
cd_values = cd_values;
|
||||
|
||||
if(flags & H5Z_FLAG_REVERSE) { /*read*/
|
||||
/* Divide the original value with MULTIPLIER */
|
||||
while(buf_left > 0) {
|
||||
*int_ptr++ /= MULTIPLIER;
|
||||
buf_left -= sizeof(int);
|
||||
} /* end while */
|
||||
} /* end if */
|
||||
else { /*write*/
|
||||
/* Multiply the original value with MULTIPLIER */
|
||||
while(buf_left > 0) {
|
||||
*int_ptr++ *= MULTIPLIER;
|
||||
buf_left -= sizeof(int);
|
||||
} /* end while */
|
||||
} /* end else */
|
||||
|
||||
return nbytes;
|
||||
} /* end H5Z_filter_dynlib2() */
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: main
|
||||
@ -10383,6 +10513,8 @@ int main(void)
|
||||
|
||||
gent_intsfourdims();
|
||||
|
||||
gent_udfilter();
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -6,6 +6,34 @@ PROJECT (HDF5_TOOLS_TEST_H5LS)
|
||||
#-----------------------------------------------------------------------------
|
||||
INCLUDE_DIRECTORIES (${HDF5_TOOLS_DIR}/lib)
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# If plugin library tests can be tested
|
||||
#-----------------------------------------------------------------------------
|
||||
set (HDF5_TOOL_PLUGIN_LIB_CORENAME "dynlibls")
|
||||
set (HDF5_TOOL_PLUGIN_LIB_NAME "${HDF5_EXTERNAL_LIB_PREFIX}${HDF5_TOOL_PLUGIN_LIB_CORENAME}")
|
||||
set (HDF5_TOOL_PLUGIN_LIB_TARGET ${HDF5_TOOL_PLUGIN_LIB_CORENAME})
|
||||
add_definitions (${HDF_EXTRA_C_FLAGS})
|
||||
INCLUDE_DIRECTORIES (${HDF5_SRC_DIR})
|
||||
|
||||
add_library (${HDF5_TOOL_PLUGIN_LIB_TARGET} SHARED dynlib_ls.c)
|
||||
TARGET_C_PROPERTIES (${HDF5_TOOL_PLUGIN_LIB_TARGET} SHARED " " " ")
|
||||
target_link_libraries (${HDF5_TOOL_PLUGIN_LIB_TARGET} ${HDF5_TEST_LIB_TARGET})
|
||||
H5_SET_LIB_OPTIONS (${HDF5_TOOL_PLUGIN_LIB_TARGET} ${HDF5_TOOL_PLUGIN_LIB_NAME} SHARED ${HDF5_PACKAGE_SOVERSION})
|
||||
|
||||
# make plugins dir
|
||||
file (MAKE_DIRECTORY "${CMAKE_BINARY_DIR}/plugins")
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copy plugin library to a plugins folder
|
||||
#-----------------------------------------------------------------------------
|
||||
add_custom_command (
|
||||
TARGET ${HDF5_TOOL_PLUGIN_LIB_TARGET}
|
||||
POST_BUILD
|
||||
COMMAND ${CMAKE_COMMAND}
|
||||
ARGS -E copy_if_different
|
||||
"$<TARGET_FILE:${HDF5_TOOL_PLUGIN_LIB_TARGET}>"
|
||||
"${CMAKE_BINARY_DIR}/plugins/$<TARGET_FILE_NAME:${HDF5_TOOL_PLUGIN_LIB_TARGET}>"
|
||||
)
|
||||
|
||||
include (CMakeTests.cmake)
|
||||
|
||||
include (CMakeTestsVDS.cmake)
|
||||
|
@ -29,6 +29,7 @@
|
||||
${HDF5_TOOLS_DIR}/testfiles/tslink.h5
|
||||
${HDF5_TOOLS_DIR}/testfiles/tsoftlinks.h5
|
||||
${HDF5_TOOLS_DIR}/testfiles/tstr.h5
|
||||
${HDF5_TOOLS_DIR}/testfiles/tudfilter.h5
|
||||
${HDF5_TOOLS_DIR}/testfiles/tudlink.h5
|
||||
${HDF5_TOOLS_DIR}/testfiles/tvldtypes1.h5
|
||||
${HDF5_TOOLS_DIR}/testfiles/tdset_idx.h5
|
||||
@ -135,6 +136,33 @@
|
||||
endif ()
|
||||
ENDMACRO ()
|
||||
|
||||
MACRO (ADD_H5_UD_TEST testname resultcode resultfile)
|
||||
if (NOT HDF5_ENABLE_USING_MEMCHECKER)
|
||||
# Remove any output file left over from previous test run
|
||||
add_test (
|
||||
NAME H5LS_UD-${testname}-clearall-objects
|
||||
COMMAND ${CMAKE_COMMAND}
|
||||
-E remove
|
||||
testfiles/${resultfile}.out
|
||||
testfiles/${resultfile}.out.err
|
||||
)
|
||||
add_test (
|
||||
NAME H5LS_UD-${testname}
|
||||
COMMAND "${CMAKE_COMMAND}"
|
||||
-D "TEST_PROGRAM=$<TARGET_FILE:h5ls>"
|
||||
-D "TEST_ARGS=${ARGN}"
|
||||
-D "TEST_FOLDER=${PROJECT_BINARY_DIR}/testfiles"
|
||||
-D "TEST_OUTPUT=${resultfile}.out"
|
||||
-D "TEST_EXPECT=${resultcode}"
|
||||
-D "TEST_REFERENCE=${resultfile}.ls"
|
||||
-D "TEST_ENV_VAR=HDF5_PLUGIN_PATH"
|
||||
-D "TEST_ENV_VALUE=${CMAKE_BINARY_DIR}/plugins"
|
||||
-P "${HDF_RESOURCES_EXT_DIR}/runTest.cmake"
|
||||
)
|
||||
set_tests_properties (H5LS_UD-${testname} PROPERTIES DEPENDS H5LS_UD-${testname}-clearall-objects)
|
||||
endif ()
|
||||
ENDMACRO ()
|
||||
|
||||
##############################################################################
|
||||
##############################################################################
|
||||
### T H E T E S T S ###
|
||||
@ -410,3 +438,8 @@
|
||||
ADD_H5_TEST (tdset_idx 0 -w80 -d tdset_idx.h5)
|
||||
endif (USE_FILTER_DEFLATE)
|
||||
|
||||
|
||||
##############################################################################
|
||||
### P L U G I N T E S T S
|
||||
##############################################################################
|
||||
ADD_H5_UD_TEST (h5ls_plugin_test 0 tudfilter -w80 -v -d tudfilter.h5)
|
||||
|
94
tools/test/h5ls/dynlib_ls.c
Normal file
94
tools/test/h5ls/dynlib_ls.c
Normal file
@ -0,0 +1,94 @@
|
||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||
* 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 files COPYING and Copyright.html. COPYING can be found at the root *
|
||||
* of the source code distribution tree; Copyright.html can be found at the *
|
||||
* root level of an installed copy of the electronic document set and is *
|
||||
* linked from the top-level documents page. It can also be found at *
|
||||
* http://hdfgroup.org/HDF5/doc/Copyright.html. If you do not have access *
|
||||
* to either file, you may request a copy from help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
/*
|
||||
* Programmer: Raymond Lu
|
||||
* 13 February 2013
|
||||
*
|
||||
* Purpose: Tests the plugin module (H5PL)
|
||||
*/
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include "H5PLextern.h"
|
||||
|
||||
#define H5Z_FILTER_DYNLIB2 258
|
||||
#define MULTIPLIER 3
|
||||
|
||||
static size_t H5Z_filter_dynlib2(unsigned int flags, size_t cd_nelmts,
|
||||
const unsigned int *cd_values, size_t nbytes, size_t *buf_size, void **buf);
|
||||
|
||||
/* This message derives from H5Z */
|
||||
const H5Z_class2_t H5Z_DYNLIB2[1] = {{
|
||||
H5Z_CLASS_T_VERS, /* H5Z_class_t version */
|
||||
H5Z_FILTER_DYNLIB2, /* Filter id number */
|
||||
1, 1, /* Encoding and decoding enabled */
|
||||
"dynlib2", /* Filter name for debugging */
|
||||
NULL, /* The "can apply" callback */
|
||||
NULL, /* The "set local" callback */
|
||||
(H5Z_func_t)H5Z_filter_dynlib2, /* The actual filter function */
|
||||
}};
|
||||
|
||||
H5PL_type_t H5PLget_plugin_type(void) {return H5PL_TYPE_FILTER;}
|
||||
const void *H5PLget_plugin_info(void) {return H5Z_DYNLIB2;}
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5Z_filter_dynlib2
|
||||
*
|
||||
* Purpose: A dynlib2 filter method that multiplies the original value
|
||||
* during write and divide the original value during read. It
|
||||
* will be built as a shared library. plugin.c test will load
|
||||
* and use this filter library.
|
||||
*
|
||||
* Return: Success: Data chunk size
|
||||
*
|
||||
* Failure: 0
|
||||
*
|
||||
* Programmer: Raymond Lu
|
||||
* 29 March 2013
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
static size_t
|
||||
H5Z_filter_dynlib2(unsigned int flags, size_t cd_nelmts,
|
||||
const unsigned int *cd_values, size_t nbytes,
|
||||
size_t *buf_size, void **buf)
|
||||
{
|
||||
int *int_ptr = (int *)*buf; /* Pointer to the data values */
|
||||
size_t buf_left = *buf_size; /* Amount of data buffer left to process */
|
||||
|
||||
/* Check for the correct number of parameters */
|
||||
if(cd_nelmts > 0)
|
||||
return(0);
|
||||
|
||||
/* Assignment to eliminate unused parameter warning. */
|
||||
cd_values = cd_values;
|
||||
|
||||
if(flags & H5Z_FLAG_REVERSE) { /*read*/
|
||||
/* Divide the original value with MULTIPLIER */
|
||||
while(buf_left > 0) {
|
||||
*int_ptr++ /= MULTIPLIER;
|
||||
buf_left -= sizeof(int);
|
||||
} /* end while */
|
||||
} /* end if */
|
||||
else { /*write*/
|
||||
/* Multiply the original value with MULTIPLIER */
|
||||
while(buf_left > 0) {
|
||||
*int_ptr++ *= MULTIPLIER;
|
||||
buf_left -= sizeof(int);
|
||||
} /* end while */
|
||||
} /* end else */
|
||||
|
||||
return nbytes;
|
||||
} /* end H5Z_filter_dynlib2() */
|
||||
|
@ -1151,7 +1151,7 @@
|
||||
set (TESTRETVAL 255)
|
||||
if (WIN32)
|
||||
set (TESTRETVAL -1)
|
||||
endif()
|
||||
endif ()
|
||||
ADD_H5_CMP_TEST (plugin_zero "" "TEST" ${TESTRETVAL} h5repack_layout.h5 -v -f UD=250,0)
|
||||
|
||||
if (HDF5_TEST_VFD)
|
||||
|
24
tools/testfiles/tudfilter.ddl
Normal file
24
tools/testfiles/tudfilter.ddl
Normal file
@ -0,0 +1,24 @@
|
||||
HDF5 "tfilters.h5" {
|
||||
DATASET "myfilter" {
|
||||
DATATYPE H5T_STD_I32LE
|
||||
DATASPACE SIMPLE { ( 20, 10 ) / ( 20, 10 ) }
|
||||
STORAGE_LAYOUT {
|
||||
CHUNKED ( 10, 5 )
|
||||
SIZE 800 (1.000:1 COMPRESSION)
|
||||
}
|
||||
FILTERS {
|
||||
USER_DEFINED_FILTER {
|
||||
FILTER_ID 405
|
||||
COMMENT myfilter
|
||||
PARAMS { 5 6 }
|
||||
}
|
||||
}
|
||||
FILLVALUE {
|
||||
FILL_TIME H5D_FILL_TIME_IFSET
|
||||
VALUE H5D_FILL_VALUE_DEFAULT
|
||||
}
|
||||
ALLOCATION_TIME {
|
||||
H5D_ALLOC_TIME_INCR
|
||||
}
|
||||
}
|
||||
}
|
BIN
tools/testfiles/tudfilter.h5
Normal file
BIN
tools/testfiles/tudfilter.h5
Normal file
Binary file not shown.
23
tools/testfiles/tudfilter.ls
Normal file
23
tools/testfiles/tudfilter.ls
Normal file
@ -0,0 +1,23 @@
|
||||
Opened "tudfilter.h5" with sec2 driver.
|
||||
dynlib2 Dataset {20/20, 10/10}
|
||||
Location: 1:800
|
||||
Links: 1
|
||||
Chunks: {10, 5} 200 bytes
|
||||
Storage: 800 logical bytes, 800 allocated bytes, 100.00% utilization
|
||||
Filter-0: dynlib2-258 {}
|
||||
Type: native int
|
||||
Data:
|
||||
(0,0) 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
|
||||
(1,9) 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34,
|
||||
(3,5) 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50,
|
||||
(5,1) 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66,
|
||||
(6,7) 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82,
|
||||
(8,3) 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98,
|
||||
(9,9) 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111,
|
||||
(11,2) 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124,
|
||||
(12,5) 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137,
|
||||
(13,8) 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150,
|
||||
(15,1) 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163,
|
||||
(16,4) 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176,
|
||||
(17,7) 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189,
|
||||
(19,0) 190, 191, 192, 193, 194, 195, 196, 197, 198, 199
|
Loading…
x
Reference in New Issue
Block a user