summaryrefslogtreecommitdiffstats
path: root/test/shtype.c
diff options
context:
space:
mode:
authorRobb Matzke <matzke@llnl.gov>1998-06-04 22:28:11 (GMT)
committerRobb Matzke <matzke@llnl.gov>1998-06-04 22:28:11 (GMT)
commit15f2fb818498d5c1c377041493382a29e0d71a45 (patch)
tree3060276f664cb5febe611faa1f6101acd9a3e80b /test/shtype.c
parentb4c5e3e00965f4ba6bd6b865cbde3bd33fcdbe47 (diff)
downloadhdf5-15f2fb818498d5c1c377041493382a29e0d71a45.zip
hdf5-15f2fb818498d5c1c377041493382a29e0d71a45.tar.gz
hdf5-15f2fb818498d5c1c377041493382a29e0d71a45.tar.bz2
[svn-r408] ./test/dtypes.c
Added tests for transient and named types and their use in datasets. ./test/shtype.c Commented out all the tests since they no longer apply. ./test/chunk.c Removed a couple int->double coercion warnings.
Diffstat (limited to 'test/shtype.c')
-rw-r--r--test/shtype.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/shtype.c b/test/shtype.c
index e9fb935..ba6c32d 100644
--- a/test/shtype.c
+++ b/test/shtype.c
@@ -72,6 +72,7 @@ display_error_cb (void __unused__ *client_data)
static int
test_1 (void)
{
+#if 0
hid_t f, d1, d2, s1, t1, t2;
hsize_t size[1] = {1};
@@ -105,6 +106,9 @@ test_1 (void)
error:
return -1;
+#else
+ return 0;
+#endif
}
@@ -129,6 +133,7 @@ test_1 (void)
static int
test_2 (void)
{
+#if 0
hid_t f1, f2, t1, t2, s1, d1, d2;
hsize_t size[1] = {1};
char buf[32];
@@ -178,6 +183,9 @@ test_2 (void)
error:
return -1;
+#else
+ return 0;
+#endif
}
@@ -200,6 +208,7 @@ test_2 (void)
static int
test_3 (void)
{
+#if 0
hid_t f1, s1, t1, d1;
hsize_t size[1] = {1};
herr_t status, (*ef)(void*)=NULL;
@@ -254,6 +263,9 @@ test_3 (void)
error:
return -1;
+#else
+ return 0;
+#endif
}