summaryrefslogtreecommitdiffstats
path: root/hl/test/test_table.c
diff options
context:
space:
mode:
Diffstat (limited to 'hl/test/test_table.c')
-rw-r--r--hl/test/test_table.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/hl/test/test_table.c b/hl/test/test_table.c
index 85fc70d..bd8dd79 100644
--- a/hl/test/test_table.c
+++ b/hl/test/test_table.c
@@ -818,6 +818,22 @@ int test_table(hid_t fid, int write)
goto out;
}
}
+
+ /*-------------------------------------------------------------------------
+ * Delete records, start at 0, delete 1
+ * pos = 0
+ * data= empty
+ *-------------------------------------------------------------------------
+ */
+ dstart=0; drecords=1;
+ if (H5TBdelete_record(fid,"table3",dstart,drecords)<0)
+ goto out;
+
+ if (H5TBget_table_info(fid,"table3",&rfields,&rrecords)<0)
+ goto out;
+
+ if (rrecords)
+ goto out;
PASSED();
}