aboutsummaryrefslogtreecommitdiffstats
path: root/asn1c
diff options
context:
space:
mode:
authorLev Walkin <vlm@lionet.info>2005-03-09 22:09:26 +0000
committerLev Walkin <vlm@lionet.info>2005-03-09 22:09:26 +0000
commitc6c49c8a1463f8cf404969ef434201aa27c4df3a (patch)
tree4fd89f534de452286975fcac6f5841deb00427bd /asn1c
parent112d69e0403965119973ec293c00ca7ab25c81e5 (diff)
new test
Diffstat (limited to 'asn1c')
-rw-r--r--asn1c/tests/check-73.c28
1 files changed, 28 insertions, 0 deletions
diff --git a/asn1c/tests/check-73.c b/asn1c/tests/check-73.c
new file mode 100644
index 00000000..9d331415
--- /dev/null
+++ b/asn1c/tests/check-73.c
@@ -0,0 +1,28 @@
+#undef NDEBUG
+#include <stdio.h>
+#include <stdlib.h>
+#include <sys/types.h>
+#include <string.h>
+#include <assert.h>
+
+#include <Epyt.h>
+
+int
+main(int ac, char **av) {
+ Type_t t;
+ Epyt_t ept;
+ Ypet_t ypt;
+
+ (void)ac; /* Unused argument */
+ (void)av; /* Unused argument */
+
+ memset(&t, 0, sizeof(t));
+ memset(&ept, 0, sizeof(ept));
+ memset(&ypt, 0, sizeof(ypt));
+
+ /*
+ * No plans to fill it up: just checking whether it compiles or not.
+ */
+
+ return 0;
+}