utilizing new library

git-svn-id: https://asn1c.svn.sourceforge.net/svnroot/asn1c/trunk@1381 59561ff5-6e30-0410-9f3c-9617f08c8826
diff --git a/skeletons/tests/Makefile.am b/skeletons/tests/Makefile.am
index a664a6f..fc53663 100644
--- a/skeletons/tests/Makefile.am
+++ b/skeletons/tests/Makefile.am
@@ -13,6 +13,7 @@
 	check-XER		\
 	check-PER
 
+AM_LDFLAGS = $(top_srcdir)/skeletons/libasn1cskeletons.la
 LDADD = -lm
 
 TESTS = $(check_PROGRAMS)
diff --git a/skeletons/tests/Makefile.in b/skeletons/tests/Makefile.in
index 8d01f36..8a7af24 100644
--- a/skeletons/tests/Makefile.in
+++ b/skeletons/tests/Makefile.in
@@ -147,7 +147,6 @@
 EXEEXT = @EXEEXT@
 F77 = @F77@
 FFLAGS = @FFLAGS@
-GREP = @GREP@
 INSTALL_DATA = @INSTALL_DATA@
 INSTALL_PROGRAM = @INSTALL_PROGRAM@
 INSTALL_SCRIPT = @INSTALL_SCRIPT@
@@ -179,10 +178,12 @@
 STRIP = @STRIP@
 VERSION = @VERSION@
 YACC = @YACC@
-YFLAGS = @YFLAGS@
+ac_ct_AR = @ac_ct_AR@
 ac_ct_CC = @ac_ct_CC@
 ac_ct_CXX = @ac_ct_CXX@
 ac_ct_F77 = @ac_ct_F77@
+ac_ct_RANLIB = @ac_ct_RANLIB@
+ac_ct_STRIP = @ac_ct_STRIP@
 am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
 am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
 am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
@@ -199,30 +200,23 @@
 build_os = @build_os@
 build_vendor = @build_vendor@
 datadir = @datadir@
-datarootdir = @datarootdir@
-docdir = @docdir@
-dvidir = @dvidir@
 exec_prefix = @exec_prefix@
 host = @host@
 host_alias = @host_alias@
 host_cpu = @host_cpu@
 host_os = @host_os@
 host_vendor = @host_vendor@
-htmldir = @htmldir@
 includedir = @includedir@
 infodir = @infodir@
 install_sh = @install_sh@
 libdir = @libdir@
 libexecdir = @libexecdir@
-localedir = @localedir@
 localstatedir = @localstatedir@
 mandir = @mandir@
 mkdir_p = @mkdir_p@
 oldincludedir = @oldincludedir@
-pdfdir = @pdfdir@
 prefix = @prefix@
 program_transform_name = @program_transform_name@
-psdir = @psdir@
 sbindir = @sbindir@
 sharedstatedir = @sharedstatedir@
 sysconfdir = @sysconfdir@
@@ -232,6 +226,7 @@
 target_os = @target_os@
 target_vendor = @target_vendor@
 AM_CPPFLAGS = -I$(top_srcdir)/skeletons
+AM_LDFLAGS = $(top_srcdir)/skeletons/libasn1cskeletons.la
 LDADD = -lm
 TESTS = $(check_PROGRAMS)
 all: all-am
diff --git a/skeletons/tests/check-GeneralizedTime.c b/skeletons/tests/check-GeneralizedTime.c
index b56fa0b..63d2e66 100644
--- a/skeletons/tests/check-GeneralizedTime.c
+++ b/skeletons/tests/check-GeneralizedTime.c
@@ -1,6 +1,8 @@
-#define	__ASN_INTERNAL_TEST_MODE__
+#include <stdio.h>
+#include <assert.h>
+#include <time.h>
+
 #include <GeneralizedTime.c>
-#include <constraints.c>
 #include <math.h>	/* for pow(3) */
 
 static void
@@ -264,36 +266,3 @@
 	return 0;
 }
 
-/*
- * Dummy function.
- */
-
-asn_enc_rval_t
-OCTET_STRING_encode_der(asn_TYPE_descriptor_t *td, void *ptr, int tag_mode, ber_tlv_tag_t tag, asn_app_consume_bytes_f *cb, void *app_key) {
-	asn_enc_rval_t erval;
-
-	(void)td;
-	(void)ptr;
-	(void)tag_mode;
-	(void)tag;
-	(void)cb;
-	(void)app_key;
-
-	memset(&erval, 0, sizeof(erval));
-	return erval;
-}
-
-asn_enc_rval_t
-OCTET_STRING_encode_xer_utf8(asn_TYPE_descriptor_t *td, void *ptr, int ilevel, enum xer_encoder_flags_e flags, asn_app_consume_bytes_f *cb, void *app_key) {
-	asn_enc_rval_t erval;
-
-	(void)td;
-	(void)ptr;
-	(void)ilevel;
-	(void)flags;
-	(void)cb;
-	(void)app_key;
-
-	memset(&erval, 0, sizeof(erval));
-	return erval;
-}
diff --git a/skeletons/tests/check-INTEGER.c b/skeletons/tests/check-INTEGER.c
index fccce28..bacb618 100644
--- a/skeletons/tests/check-INTEGER.c
+++ b/skeletons/tests/check-INTEGER.c
@@ -1,13 +1,7 @@
-#include <INTEGER.c>
-#include <asn_codecs_prim.c>
-#include <ber_decoder.c>
-#include <ber_tlv_length.c>
-#include <ber_tlv_tag.c>
-#include <der_encoder.c>
-#include <xer_decoder.c>
-#include <xer_support.c>
-#include <per_support.c>
-#include <constraints.c>
+#include <stdio.h>
+#include <assert.h>
+
+#include <INTEGER.h>
 
 static char *shared_scratch_start;
 
diff --git a/skeletons/tests/check-OCTET_STRING.c b/skeletons/tests/check-OCTET_STRING.c
index 120e9c8..e03ecf5 100644
--- a/skeletons/tests/check-OCTET_STRING.c
+++ b/skeletons/tests/check-OCTET_STRING.c
@@ -1,16 +1,12 @@
-#define	EMIT_ASN_DEBUG	1
-#include <OCTET_STRING.c>
-#include <BIT_STRING.c>
-#include <xer_decoder.c>
-#include <xer_support.c>
-#include <per_support.c>
-#include <ber_decoder.c>
-#include <ber_tlv_length.c>
-#include <ber_tlv_tag.c>
-#include <der_encoder.c>
-#include <constraints.c>
+#include <stdio.h>
+#include <assert.h>
+#include <time.h>
 #include <sys/time.h>
 
+#define	EMIT_ASN_DEBUG	1
+#include <OCTET_STRING.h>
+#include <BIT_STRING.h>
+
 enum encoding_type { HEX, BINARY, UTF8 };
 
 static void
diff --git a/skeletons/tests/check-OIDs.c b/skeletons/tests/check-OIDs.c
index b7fafe0..7609ed1 100644
--- a/skeletons/tests/check-OIDs.c
+++ b/skeletons/tests/check-OIDs.c
@@ -1,16 +1,10 @@
-#include <OBJECT_IDENTIFIER.c>
-#include <RELATIVE-OID.c>
-#include <asn_codecs_prim.c>
-#include <ber_decoder.c>
-#include <ber_tlv_length.c>
-#include <ber_tlv_tag.c>
-#include <der_encoder.c>
-#include <xer_decoder.c>
-#include <xer_support.c>
-#include <constraints.c>
-
+#include <stdio.h>
+#include <assert.h>
 #include <sys/time.h>
 
+#include <OBJECT_IDENTIFIER.h>
+#include <RELATIVE-OID.h>
+
 static int
 _print(const void *buffer, size_t size, void *app_key) {
 	(void)app_key;
@@ -443,6 +437,3 @@
 	return 0;
 }
 
-asn_dec_rval_t OCTET_STRING_decode_uper(asn_codec_ctx_t *ctx, asn_TYPE_descriptor_t *td, asn_per_constraints_t *cts, void **sptr, asn_per_data_t *pd) { asn_dec_rval_t rv = { 0, 0 }; (void)ctx; (void)td; (void)cts; (void)sptr; (void)pd; return rv; }
-
-asn_enc_rval_t OCTET_STRING_encode_uper(asn_TYPE_descriptor_t *td, asn_per_constraints_t *cts, void *sptr, asn_per_outp_t *po) { asn_enc_rval_t er = { 0, 0, 0 }; (void)td; (void)cts; (void)sptr; (void)po; return er; }
diff --git a/skeletons/tests/check-PER.c b/skeletons/tests/check-PER.c
index e0fb72e..12e700c 100644
--- a/skeletons/tests/check-PER.c
+++ b/skeletons/tests/check-PER.c
@@ -1,6 +1,8 @@
-#include <per_support.c>
+#include <stdio.h>
 #include <assert.h>
 
+#include <per_support.h>
+
 static void
 check_per_decoding() {
 	uint8_t buf[] = { 0xB7, 0x19, 0x2F, 0xEE, 0xAD };
diff --git a/skeletons/tests/check-REAL.c b/skeletons/tests/check-REAL.c
index 3a868aa..f3aff9c 100644
--- a/skeletons/tests/check-REAL.c
+++ b/skeletons/tests/check-REAL.c
@@ -1,14 +1,9 @@
+#include <stdio.h>
+#include <assert.h>
+#include <math.h>
+
 #define	EMIT_ASN_DEBUG	1
-#include <REAL.c>
-#include <asn_codecs_prim.c>
-#include <ber_decoder.c>
-#include <ber_tlv_length.c>
-#include <ber_tlv_tag.c>
-#include <der_encoder.c>
-#include <xer_decoder.c>
-#include <xer_support.c>
-#include <xer_encoder.c>
-#include <constraints.c>
+#include <REAL.h>
 
 static char reconstructed[2][512];
 static int reconstr_lens[2];
@@ -286,7 +281,3 @@
 
 	return 0;
 }
-
-asn_dec_rval_t OCTET_STRING_decode_uper(asn_codec_ctx_t *ctx, asn_TYPE_descriptor_t *td, asn_per_constraints_t *cts, void **sptr, asn_per_data_t *pd) { asn_dec_rval_t rv = { 0, 0 }; (void)ctx; (void)td; (void)cts; (void)sptr; (void)pd; return rv; }
-
-asn_enc_rval_t OCTET_STRING_encode_uper(asn_TYPE_descriptor_t *td, asn_per_constraints_t *cts, void *sptr, asn_per_outp_t *po) { asn_enc_rval_t er = { 0, 0, 0 }; (void)td; (void)cts; (void)sptr; (void)po; return er; }
diff --git a/skeletons/tests/check-UTCTime.c b/skeletons/tests/check-UTCTime.c
index 81dde56..e1c2556 100644
--- a/skeletons/tests/check-UTCTime.c
+++ b/skeletons/tests/check-UTCTime.c
@@ -1,7 +1,9 @@
-#define	__ASN_INTERNAL_TEST_MODE__
+#include <stdio.h>
+#include <assert.h>
+#include <time.h>
+
 #include <GeneralizedTime.c>
-#include <UTCTime.c>
-#include <constraints.c>
+#include <UTCTime.h>
 
 static void
 check(char *time_str, time_t sample, int as_gmt) {
@@ -58,37 +60,3 @@
 	return 0;
 }
 
-
-/*
- * Dummy function.
- */
-
-asn_enc_rval_t
-OCTET_STRING_encode_der(asn_TYPE_descriptor_t *td, void *ptr, int tag_mode, ber_tlv_tag_t tag, asn_app_consume_bytes_f *cb, void *app_key) {
-	asn_enc_rval_t erval;
-
-	(void)td;
-	(void)ptr;
-	(void)tag_mode;
-	(void)tag;
-	(void)cb;
-	(void)app_key;
-
-	memset(&erval, 0, sizeof(erval));
-	return erval;
-}
-
-asn_enc_rval_t
-OCTET_STRING_encode_xer_utf8(asn_TYPE_descriptor_t *td, void *ptr, int ilevel, enum xer_encoder_flags_e flags, asn_app_consume_bytes_f *cb, void *app_key) {
-	asn_enc_rval_t erval;
-
-	(void)td;
-	(void)ptr;
-	(void)ilevel;
-	(void)flags;
-	(void)cb;
-	(void)app_key;
-
-	memset(&erval, 0, sizeof(erval));
-	return erval;
-}
diff --git a/skeletons/tests/check-UTF8String.c b/skeletons/tests/check-UTF8String.c
index 8a90b24..64b5d2e 100644
--- a/skeletons/tests/check-UTF8String.c
+++ b/skeletons/tests/check-UTF8String.c
@@ -1,15 +1,9 @@
-#include <UTF8String.c>
-#include <OCTET_STRING.c>
-#include <ber_decoder.c>
-#include <ber_tlv_length.c>
-#include <ber_tlv_tag.c>
-#include <der_encoder.c>
-#include <xer_decoder.c>
-#include <xer_support.c>
-#include <per_support.c>
-#include <constraints.c>
+#include <stdio.h>
+#include <assert.h>
 #include <sys/time.h>
 
+#include <UTF8String.h>
+
 static void
 check(int expect_length, char *buf, int buflen) {
 	UTF8String_t st;
diff --git a/skeletons/tests/check-XER.c b/skeletons/tests/check-XER.c
index 6e2f1ce..82cd0e4 100644
--- a/skeletons/tests/check-XER.c
+++ b/skeletons/tests/check-XER.c
@@ -1,7 +1,9 @@
-#include <xer_decoder.c>
-#include <xer_support.c>
+#include <stdio.h>
 #include <assert.h>
 
+#include <asn_internal.h>
+#include <xer_decoder.h>
+
 static void
 check(char *tag, char *name, xer_check_tag_e value) {
 	xer_check_tag_e xct;
diff --git a/skeletons/tests/check-ber_tlv_tag.c b/skeletons/tests/check-ber_tlv_tag.c
index 98d5c3e..7553086 100644
--- a/skeletons/tests/check-ber_tlv_tag.c
+++ b/skeletons/tests/check-ber_tlv_tag.c
@@ -1,7 +1,9 @@
 #include <stdio.h>
+#include <string.h>
 #include <assert.h>
 
-#include <ber_tlv_tag.c>
+#include <asn_internal.h>
+#include <ber_tlv_tag.h>
 
 struct tag_control_s {
 	int taglen;
diff --git a/skeletons/tests/check-length.c b/skeletons/tests/check-length.c
index 56ec0db..8c2b64b 100644
--- a/skeletons/tests/check-length.c
+++ b/skeletons/tests/check-length.c
@@ -1,16 +1,11 @@
-#include <ber_decoder.c>
-#include <ber_tlv_length.c>
-#include <ber_tlv_tag.c>
-#include <der_encoder.c>
-#include <xer_decoder.c>
-#include <xer_support.c>
-#include <per_support.c>
-#include <constraints.c>
-#undef	ADVANCE
-#undef	RETURN
-#undef	LEFT
-#include <OCTET_STRING.c>
+#include <stdio.h>
+#include <assert.h>
 
+#include <asn_internal.h>
+#include <ber_decoder.h>
+#include <OCTET_STRING.h>
+#include <ber_tlv_length.h>
+#include <ber_tlv_tag.h>
 
 uint8_t *buf;
 size_t buf_size;