summaryrefslogtreecommitdiffstats
path: root/test/tgenprop.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2000-11-12 00:10:08 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2000-11-12 00:10:08 (GMT)
commit7a4d4b9aa2d54be49b7447104015cf366fd8e0a6 (patch)
tree0d7e49c91281c2a0c91349923687c131c83522c6 /test/tgenprop.c
parenta4076b55981d2faa677eeade27d0aa0b37782f5c (diff)
downloadhdf5-7a4d4b9aa2d54be49b7447104015cf366fd8e0a6.zip
hdf5-7a4d4b9aa2d54be49b7447104015cf366fd8e0a6.tar.gz
hdf5-7a4d4b9aa2d54be49b7447104015cf366fd8e0a6.tar.bz2
[svn-r2872] Purpose:
Code update Description: Added stub for generic property testing, although it doesn't do anything yet. Platforms tested: FreeBSD 4.1.1 (hawkwind)
Diffstat (limited to 'test/tgenprop.c')
-rw-r--r--test/tgenprop.c68
1 files changed, 68 insertions, 0 deletions
diff --git a/test/tgenprop.c b/test/tgenprop.c
new file mode 100644
index 0000000..ecd170c
--- /dev/null
+++ b/test/tgenprop.c
@@ -0,0 +1,68 @@
+/****************************************************************************
+ * NCSA HDF *
+ * Software Development Group *
+ * National Center for Supercomputing Applications *
+ * University of Illinois at Urbana-Champaign *
+ * 605 E. Springfield, Champaign IL 61820 *
+ * *
+ * For conditions of distribution and use, see the accompanying *
+ * hdf/COPYING file. *
+ * *
+ ****************************************************************************/
+
+#ifdef RCSID
+static char RcsId[] = "$Revision$";
+#endif
+
+/* $Id$ */
+
+/***********************************************************
+*
+* Test program: tgenprop
+*
+* Test the Generic Property functionality
+*
+*************************************************************/
+
+#include <testhdf5.h>
+
+#include <hdf5.h>
+
+#define FILENAME "tgenprop.h5"
+
+/****************************************************************
+**
+** test_genprop(): Main generic property testing routine.
+**
+****************************************************************/
+void
+test_genprop(void)
+{
+ /* Output message about test being performed */
+ MESSAGE(5, ("Testing Generic Properties\n"));
+
+ /* These tests use the same file... */
+
+} /* test_genprop() */
+
+
+/*-------------------------------------------------------------------------
+ * Function: cleanup_genprop
+ *
+ * Purpose: Cleanup temporary test files
+ *
+ * Return: none
+ *
+ * Programmer: Quincey Koziol
+ * June 8, 1999
+ *
+ * Modifications:
+ *
+ *-------------------------------------------------------------------------
+ */
+void
+cleanup_genprop(void)
+{
+ remove(FILENAME);
+}
+