summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/dl06/dl06-o1.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/libtests/dl06/dl06-o1.c')
-rw-r--r--testsuites/libtests/dl06/dl06-o1.c53
1 files changed, 53 insertions, 0 deletions
diff --git a/testsuites/libtests/dl06/dl06-o1.c b/testsuites/libtests/dl06/dl06-o1.c
new file mode 100644
index 0000000000..d3c882ebfb
--- /dev/null
+++ b/testsuites/libtests/dl06/dl06-o1.c
@@ -0,0 +1,53 @@
+/*
+ * Copyright (c) 2018 Chris Johns <chrisj@rtems.org>. All rights reserved.
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.org/license/LICENSE.
+ */
+
+#include "dl06-o2.h"
+
+#include <dlfcn.h>
+#include <math.h>
+
+#include <rtems/test.h>
+
+#define printf(...) rtems_printf(&rtems_test_printer, __VA_ARGS__);
+
+typedef void (*func1_t)(unsigned short s[7]);
+
+static void* find_sym(const char* name)
+{
+ void* sym = dlsym(RTLD_DEFAULT, name);
+ if (sym == NULL)
+ printf("dlsym failed: not found: %s\n", name);
+ return sym;
+}
+
+/*
+ * Yes a decl in the source. This is a modules main and I could not find which
+ * header main is defined in.
+ */
+int rtems_main (int argc, const char* argv[]);
+
+int rtems_main (int argc, const char* argv[])
+{
+ func1_t f1;
+ int arg;
+ double d;
+ unsigned short s[7] = { 12, 34, 56, 78, 90, 13, 57 };
+
+ printf("Loaded module: argc:%d [%s]\n", argc, __FILE__);
+
+ f1 = find_sym ("dl_o2_func1");
+ if (f1 == NULL)
+ return 0;
+
+ f1 (s);
+
+ d = dl_o2_func2 (7.1, 33.0);
+ d = dl_o2_func3 (0.778899);
+
+ return argc;
+}