summaryrefslogtreecommitdiff
path: root/Tests/FindHDF5/Test/test_C.c
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/FindHDF5/Test/test_C.c')
-rw-r--r--Tests/FindHDF5/Test/test_C.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/Tests/FindHDF5/Test/test_C.c b/Tests/FindHDF5/Test/test_C.c
new file mode 100644
index 0000000000..4c18364528
--- /dev/null
+++ b/Tests/FindHDF5/Test/test_C.c
@@ -0,0 +1,12 @@
+#include <hdf5.h>
+
+int main(int argc, const char* argv[])
+{
+ hid_t fid;
+ if (argc != 2) {
+ return 1;
+ }
+ fid = H5Fcreate(argv[1], H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT);
+ H5Fclose(fid);
+ return 0;
+}