libdl: Add an archive command

- The archive command lists archives, symbols and any duplicate
  symbols.
- Change the RTL shell commands to the rtems_printer to allow
  the output to be captured.
This commit is contained in:
Chris Johns
2019-03-10 07:04:42 +13:00
parent a5f84c6a8a
commit dad6fd4333
25 changed files with 1753 additions and 173 deletions

View File

@@ -649,6 +649,58 @@ CLEANFILES += dl09.pre dl09-sym.o dl09-o1.o dl09-o2.o dl09-o3.o dl09-o4.o \
endif
endif
if DLTESTS
if TEST_dl10
lib_tests += dl10
lib_screens += dl10/dl10.scn
lib_docs += dl10/dl10.doc
dl10_SOURCES = dl10/init.c dl10/dl-load.c dl10-tar.c dl10-tar.h
dl10_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_dl10) $(support_includes)
dl10/init.c: dl10-tar.o
dl10.pre: $(dl10_OBJECTS) $(dl10_DEPENDENCIES)
@rm -f dl10.pre dl10-syms.o
$(AM_V_CCLD)$(LINK.c) $(CPU_CFLAGS) $(AM_CFLAGS) $(AM_LDFLAGS) -o $@ $+
dl10-o1.o: dl10/dl-o1.c Makefile
$(AM_V_CC)$(COMPILE) -c -o $@ $<
dl10-o2.o: dl10/dl-o2.c Makefile
$(AM_V_CC)$(COMPILE) -c -o $@ $<
dl10-o3.o: dl10/dl-o3.c Makefile
$(AM_V_CC)$(COMPILE) -c -o $@ $<
dl10-o4.o: dl10/dl-o4.c Makefile
$(AM_V_CC)$(COMPILE) -c -o $@ $<
dl10-o5.o: dl10/dl-o5.c Makefile
$(AM_V_CC)$(COMPILE) -c -o $@ $<
dl10-o6.o: dl10/dl-o6.c Makefile
$(AM_V_CC)$(COMPILE) -c -o $@ $<
etc/libdl-dl10.conf:
mkdir etc; \
echo "#" > $@
echo " # blah blah" >> $@
echo "/libdl10*.a" >> $@
echo "" >> $@
noinst_LIBRARIES = libdl10_1.a libdl10_2.a
libdl10_1_a_SOURCES = dl10-o2.c dl10-o4.c
libdl10_2_a_SOURCES = dl10-o3.c dl10-o5.c dl10-o6.c
dl10.tar: etc/libdl-dl10.conf dl10-o1.o libdl10_1.a libdl10_2.a
@rm -f $@
$(AM_V_GEN)$(PAX) -w -f $@ $+
dl10-tar.c: dl10.tar
$(AM_V_GEN)$(BIN2C) -C $< $@
dl10-tar.h: dl10.tar
$(AM_V_GEN)$(BIN2C) -H $< $@
dl10-tar.o: dl10-tar.c dl10-tar.h
$(AM_V_CC)$(COMPILE) -c -o $@ $<
dl10-sym.o: dl10.pre
$(AM_V_GEN)rtems-syms -e -c "$(CFLAGS)" -o $@ $<
dl10$(EXEEXT): $(dl10_OBJECTS) $(dl10_DEPENDENCIES) dl10-sym.o
@rm -f $@
$(AM_V_CCLD)$(LINK.c) $(CPU_CFLAGS) $(AM_CFLAGS) $(AM_LDFLAGS) -o $@ $+
CLEANFILES += dl10.pre dl10-sym.o libdl10_1.a libdl10_2.a dl10-o1.o dl10-o2.o \
dl10-o3.o dl10-o4.o dl10-o5.o dl10-o6.o \
dl10.tar dl10-tar.h etc/libdl-dl10.conf
endif
endif
if TEST_dumpbuf01
lib_tests += dumpbuf01
lib_screens += dumpbuf01/dumpbuf01.scn

View File

@@ -134,6 +134,7 @@ RTEMS_TEST_CHECK([dl06])
RTEMS_TEST_CHECK([dl07])
RTEMS_TEST_CHECK([dl08])
RTEMS_TEST_CHECK([dl09])
RTEMS_TEST_CHECK([dl10])
RTEMS_TEST_CHECK([dumpbuf01])
RTEMS_TEST_CHECK([dup2])
RTEMS_TEST_CHECK([exit01])

View File

@@ -0,0 +1,141 @@
/*
* Copyright (c) 2014 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.
*/
#define TEST_TRACE 0
#if TEST_TRACE
#define DEBUG_TRACE (RTEMS_RTL_TRACE_DETAIL | \
RTEMS_RTL_TRACE_WARNING | \
RTEMS_RTL_TRACE_LOAD | \
RTEMS_RTL_TRACE_UNLOAD | \
RTEMS_RTL_TRACE_SYMBOL | \
RTEMS_RTL_TRACE_RELOC | \
RTEMS_RTL_TRACE_LOAD_SECT | \
RTEMS_RTL_TRACE_ALLOCATOR | \
RTEMS_RTL_TRACE_UNRESOLVED | \
RTEMS_RTL_TRACE_ARCHIVES | \
RTEMS_RTL_TRACE_DEPENDENCY)
/* RTEMS_RTL_TRACE_ALL */
#define DL_DEBUG_TRACE DEBUG_TRACE
#define DL_DEBUG_CMD 1
#else
#define DL_DEBUG_TRACE 0
#define DL_DEBUG_CMD 0
#endif
#include <dlfcn.h>
#include "dl-load.h"
#include <tmacros.h>
#include <rtems/rtl/rtl-shell.h>
#include <rtems/rtl/rtl-trace.h>
typedef int (*call_sig)(void);
static void dl_load_dump (void)
{
#if DL_DEBUG_CMD
char* list[] = { "rtl", "list", NULL };
char* sym[] = { "rtl", "sym", NULL };
printf ("RTL List:\n");
rtems_rtl_shell_command (2, list);
printf ("RTL Sym:\n");
rtems_rtl_shell_command (2, sym);
#endif
}
static bool dl_check_resolved(void* handle, bool has_unresolved)
{
int unresolved = 0;
if (dlinfo (handle, RTLD_DI_UNRESOLVED, &unresolved) == 0)
return 1;
if (has_unresolved)
{
if (unresolved == 0)
{
dl_load_dump();
return false;
}
}
else
{
if (unresolved != 0)
{
dl_load_dump();
return false;
}
}
printf ("handel: %p: no unresolved externals\n", handle);
return true;
}
static void* dl_load_obj(const char* name, bool has_unresolved)
{
void* handle;
printf("load: %s\n", name);
handle = dlopen (name, RTLD_NOW | RTLD_GLOBAL);
if (!handle)
{
printf("dlopen failed: %s\n", dlerror());
return NULL;
}
dl_check_resolved (handle, has_unresolved);
printf ("handle: %p loaded\n", handle);
return handle;
}
static void dl_close (void* handle)
{
int r;
printf ("handle: %p closing\n", handle);
r = dlclose (handle);
if (r != 0)
printf("dlclose failed: %s\n", dlerror());
rtems_test_assert (r == 0);
}
static int dl_call (void* handle, const char* func)
{
call_sig call = dlsym (handle, func);
if (call == NULL)
{
printf("dlsym failed: symbol not found: %s\n", func);
return 1;
}
call ();
return 0;
}
int dl_load_test(void)
{
void* o1;
printf ("Test source (link in strstr): %s\n", dl_localise_file (__FILE__));
#if DL_DEBUG_TRACE
rtems_rtl_trace_set_mask (DL_DEBUG_TRACE);
#endif
o1 = dl_load_obj("/dl10-o1.o", false);
if (!o1)
return 1;
if (!dl_check_resolved (o1, false))
return 1;
dl_load_dump ();
return 0;
}

View File

@@ -0,0 +1,21 @@
/*
* Copyright (c) 2014, 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 <string.h>
#if !defined(_DL_LOAD_H_)
#define _DL_LOAD_H_
static inline const char* dl_localise_file (const char* file)
{
return (const char*) strstr (file, "testsuites");
}
int dl_load_test(void);
#endif

View File

@@ -0,0 +1,61 @@
/*
* 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 "dl-o1.h"
#include <rtems/test.h>
#include "dl-load.h"
#include "dl-o1.h"
#include "dl-o2.h"
#define printf(...) rtems_printf(&rtems_test_printer, __VA_ARGS__);
/*
* Create some symbols. The uninitialised will be in the common section with
* separated text and data and this means there is no actual section in the ELF
* file, the details for this are in the symbols.
*/
int dl01_bss1; /* unitialised, .bss */
float dl01_bss2[30]; /* unitialised, .bss */
char dl01_bss3[10]; /* unitialised, .bss */
int dl01_data1 = 1; /* initialised, .data */
float dl01_data2 = 0.3333; /* initialised, .data */
const int dl01_const1 = 3; /* read-only, .const */
const float dl01_const2 = 0.666; /* read-only, .const */
int dl01_func1(void) /* code, .text */
{
return 4;
}
/*
* 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_o1 (void);
#define DL_NAME "dlo1"
#define PAINT_VAR(_v) sizeof(_v), &_v, _v
int rtems_main_o1 (void)
{
printf (DL_NAME ": module: %s\n", dl_localise_file (__FILE__));
printf (DL_NAME ": dl01_bss1: %4zu: %p: %d\n", PAINT_VAR (dl01_bss1));
printf (DL_NAME ": dl01_bss2: %4zu: %p: %f\n", PAINT_VAR (dl01_bss2[0]));
printf (DL_NAME ": dl01_bss3: %4zu: %p: %02x\n", PAINT_VAR (dl01_bss3[0]));
printf (DL_NAME ": dl01_data1: %4zu: %p: %d\n", PAINT_VAR (dl01_data1));
/* no %f in the rtems test printer */
printf (DL_NAME ": dl01_data2: %4zu: %p: %f\n", PAINT_VAR (dl01_data2));
printf (DL_NAME ": dl01_const1: %4zu: %p: %d\n", PAINT_VAR (dl01_const1));
printf (DL_NAME ": dl01_const2: %4zu: %p: %f\n", PAINT_VAR (dl01_const2));
printf (DL_NAME ": dl01_func1: %4zu: %p\n", sizeof(dl01_func1), &dl01_func1);
rtems_main_o2 ();
return 0;
}

View File

@@ -0,0 +1,23 @@
/*
* 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.
*/
#if !defined(DL01_H)
#define DL01_H
extern int dl01_bss1;
extern float dl01_bss2[30];
extern char dl01_bss3[10];
extern int dl01_data1;
extern float dl01_data2;
extern const int dl01_const1;
extern const float dl01_const2;
int dl01_func1(void);
#endif

View File

@@ -0,0 +1,39 @@
/*
* Copyright (c) 2014 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 "dl-load.h"
#include "dl-o2.h"
#include "dl-o3.h"
#include <rtems/test.h>
#define printf(...) rtems_printf(&rtems_test_printer, __VA_ARGS__);
int dl02_bss1;
float dl02_bss2[7];
char dl02_bss3[21];
int dl02_data1;
float dl02_data2;
#define DL_NAME "dlo2"
#define PAINT_VAR(_v) sizeof(_v), &_v, _v
int rtems_main_o2 (void)
{
printf (DL_NAME ": module: %s\n", dl_localise_file (__FILE__));
printf (DL_NAME ": dl02_bss1: %4zu: %p: %d\n", PAINT_VAR (dl02_bss1));
printf (DL_NAME ": dl02_bss2: %4zu: %p: %f\n", PAINT_VAR (dl02_bss2[0]));
printf (DL_NAME ": dl02_bss3: %4zu: %p: %02x\n", PAINT_VAR (dl02_bss3[0]));
printf (DL_NAME ": dl02_data1: %4zu: %p: %d\n", PAINT_VAR (dl02_data1));
/* no %f in the rtems test printer */
printf (DL_NAME ": dl02_data2: %4zu: %p: %f\n", PAINT_VAR (dl02_data2));
rtems_main_o3 ();
return 0;
}

View File

@@ -0,0 +1,25 @@
/*
* 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.
*/
#if !defined(DL02_H)
#define DL02_H
/*
* A set of variables in dl-o2 reference by dl-03.
*/
extern int dl02_bss1;
extern float dl02_bss2[7];
extern char dl02_bss3[21];
extern int dl02_data1;
extern float dl02_data2;
int rtems_main_o2 (void);
#endif

View File

@@ -0,0 +1,40 @@
/*
* Copyright (c) 2014 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 "dl-load.h"
#include "dl-o3.h"
#include "dl-o4.h"
#include "dl-o5.h"
#include <inttypes.h>
#include <rtems/test.h>
#define printf(...) rtems_printf(&rtems_test_printer, __VA_ARGS__);
#define DL_NAME "dlo3"
#define PAINT_VAR(_v) sizeof(_v), &_v, _v
int rtems_main_o3 ()
{
printf (DL_NAME ": module: %s\n", dl_localise_file (__FILE__));
printf (DL_NAME ": dl04_unresolv_1: %4zu: %p: %d\n", PAINT_VAR (dl04_unresolv_1));
printf (DL_NAME ": dl04_unresolv_2: %4zu: %p: %f\n", PAINT_VAR (dl04_unresolv_2));
printf (DL_NAME ": dl04_unresolv_3: %4zu: %p: %02x\n", PAINT_VAR (dl04_unresolv_3));
printf (DL_NAME ": dl04_unresolv_4: %4zu: %p: %p\n", PAINT_VAR (dl04_unresolv_4));
printf (DL_NAME ": dl04_unresolv_5: %4zu: %p: %d\n", PAINT_VAR (dl04_unresolv_5));
printf (DL_NAME ": dl04_unresolv_6: %4zu: %p: %s\n", PAINT_VAR (dl04_unresolv_6));
printf (DL_NAME ": dl05_unresolv_1: %4zu: %p: %" PRIu64 "\n", PAINT_VAR (dl05_unresolv_1));
printf (DL_NAME ": dl05_unresolv_2: %4zu: %p: %" PRIu16 "\n", PAINT_VAR (dl05_unresolv_2));
printf (DL_NAME ": dl05_unresolv_3: %4zu: %p: %" PRIu32 "\n", PAINT_VAR (dl05_unresolv_3));
printf (DL_NAME ": dl05_unresolv_4: %4zu: %p: %" PRIu8 "\n", PAINT_VAR (dl05_unresolv_4));
printf (DL_NAME ": dl05_unresolv_5: %4zu: %p: %" PRIi64 "\n", PAINT_VAR (dl05_unresolv_5));
rtems_main_o4 ();
return 0;
}

View File

@@ -0,0 +1,15 @@
/*
* 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.
*/
#if !defined(DL03_H)
#define DL03_H
int rtems_main_o3 (void);
#endif

View File

@@ -0,0 +1,40 @@
/*
* Copyright (c) 2014 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 "dl-load.h"
#include "dl-o4.h"
#include "dl-o5.h"
#include <rtems/test.h>
#define printf(...) rtems_printf(&rtems_test_printer, __VA_ARGS__);
int dl04_unresolv_1;
float dl04_unresolv_2;
char dl04_unresolv_3;
char* dl04_unresolv_4;
const int dl04_unresolv_5 = 4;
const char* dl04_unresolv_6 = "dl-O4";
#define DL_NAME "dlo4"
#define PAINT_VAR(_v) sizeof(_v), &_v, _v
int rtems_main_o4 (void)
{
printf (DL_NAME ": module: %s\n", dl_localise_file (__FILE__));
printf (DL_NAME ": dl04_unresolv_1: %4zu: %p: %d\n", PAINT_VAR (dl04_unresolv_1));
printf (DL_NAME ": dl04_unresolv_2: %4zu: %p: %f\n", PAINT_VAR (dl04_unresolv_2));
printf (DL_NAME ": dl04_unresolv_3: %4zu: %p: %02x\n", PAINT_VAR (dl04_unresolv_3));
printf (DL_NAME ": dl04_unresolv_4: %4zu: %p: %p\n", PAINT_VAR (dl04_unresolv_4));
printf (DL_NAME ": dl04_unresolv_5: %4zu: %p: %d\n", PAINT_VAR (dl04_unresolv_5));
printf (DL_NAME ": dl04_unresolv_6: %4zu: %p: %s\n", PAINT_VAR (dl04_unresolv_6));
rtems_main_o5 ();
return 0;
}

View File

@@ -0,0 +1,29 @@
/*
* 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.
*/
#if !defined(DL04_H)
#define DL04_H
/*
* A set of variables in dl-o4 referenced by dl-03 and unresolved when dl-o3 is
* loaded. They are all uninitialised variables with various sizes in a mixed
* order to get various alignments. These and dl-o5 variables are designed to
* force the dependent tables to grow.
*/
extern int dl04_unresolv_1;
extern float dl04_unresolv_2;
extern char dl04_unresolv_3;
extern char* dl04_unresolv_4;
extern const int dl04_unresolv_5;
extern const char* dl04_unresolv_6;
int rtems_main_o4 (void);
#endif

View File

@@ -0,0 +1,36 @@
/*
* Copyright (c) 2014 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 "dl-load.h"
#include "dl-o5.h"
#include <inttypes.h>
#include <rtems/test.h>
#define printf(...) rtems_printf(&rtems_test_printer, __VA_ARGS__);
uint64_t dl05_unresolv_1;
uint16_t dl05_unresolv_2;
uint32_t dl05_unresolv_3;
uint8_t dl05_unresolv_4;
int64_t dl05_unresolv_5;
#define DL_NAME "dlo5"
#define PAINT_VAR(_v) sizeof(_v), &_v, _v
int rtems_main_o5 (void)
{
printf (DL_NAME ": module: %s\n", dl_localise_file (__FILE__));
printf (DL_NAME ": dl05_unresolv_1: %4zu: %p: %" PRIu64 "\n", PAINT_VAR (dl05_unresolv_1));
printf (DL_NAME ": dl05_unresolv_2: %4zu: %p: %" PRIu16 "\n", PAINT_VAR (dl05_unresolv_2));
printf (DL_NAME ": dl05_unresolv_3: %4zu: %p: %" PRIu32 "\n", PAINT_VAR (dl05_unresolv_3));
printf (DL_NAME ": dl05_unresolv_4: %4zu: %p: %" PRIu8 "\n", PAINT_VAR (dl05_unresolv_4));
printf (DL_NAME ": dl05_unresolv_5: %4zu: %p: %" PRIi64 "\n", PAINT_VAR (dl05_unresolv_5));
return 0;
}

View File

@@ -0,0 +1,30 @@
/*
* 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 <stdint.h>
#if !defined(DL05_H)
#define DL05_H
/*
* A set of variables in dl-o5 referenced by dl-03 and unresolved when dl-o3 is
* loaded. They are all uninitialised variables with various sizes in a mixed
* order to get various alignments. These and dl-o4 variables are designed to
* force the dependent tables to grow.
*/
extern uint64_t dl05_unresolv_1;
extern uint16_t dl05_unresolv_2;
extern uint32_t dl05_unresolv_3;
extern uint8_t dl05_unresolv_4;
extern int64_t dl05_unresolv_5;
int rtems_main_o5 (void);
#endif

View File

@@ -0,0 +1,18 @@
/*
* Copyright (c) 2014 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 "dl-load.h"
#include <inttypes.h>
#include <rtems/test.h>
int rtems_main_o5 (void)
{
/* duplicate symbol in archive */
return 0;
}

View File

@@ -0,0 +1,22 @@
# Copyright (c) 2019 Chris Johns <chrisj@rtems.org>
#
# 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.
#
This file describes the directives and concepts tested by this test set.
test set name: dl10
directives:
dlopen
dlinfo
dlsym
dlclose
concepts:
+ Load modules from archives that have duplicate symbols.
+ Wait a shell prompt to test the RTL commands.

View File

@@ -0,0 +1,41 @@
*** BEGIN OF TEST libdl (RTL) 10 ***
*** TEST VERSION: 5.0.0.c1aa9685eaa9d5d321c965a2aa44f868b7834c23
*** TEST STATE: EXPECTED-PASS
*** TEST BUILD: RTEMS_NETWORKING RTEMS_POSIX_API
*** TEST TOOLS: 7.4.0 20181206 (RTEMS 5, RSB 98588a55961a92f5d27bfd756dfc9e31b2b1bf98, Newlib 3e24fbf6f)
RTL (libdl) commands: dl, rtl
RTEMS Shell on /dev/foobar. Use 'help' to list commands.
SHLL [/] # rtl obj load dl10-o1.o
SHLL [/] # rtl list -l
dl10-o1.o
unresolved : 0
users : 1
references : 0
symbols : 9
symbol memory : 281
/libdl10_1.a:dl10-o2.o
unresolved : 0
users : 0
references : 1
symbols : 6
symbol memory : 186
/libdl10_2.a:dl10-o5.o
unresolved : 0
users : 0
references : 2
symbols : 6
symbol memory : 214
/libdl10_2.a:dl10-o3.o
unresolved : 0
users : 0
references : 1
symbols : 1
symbol memory : 34
/libdl10_1.a:dl10-o4.o
unresolved : 0
users : 0
references : 1
symbols : 7
symbol memory : 250

View File

@@ -0,0 +1,137 @@
/*
* 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.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "tmacros.h"
#include <errno.h>
#include <string.h>
#include <stdint.h>
#include <unistd.h>
#include <rtems/rtl/dlfcn-shell.h>
#include <rtems/rtl/rtl.h>
#include <rtems/rtl/rtl-shell.h>
#include <rtems/shell.h>
#include <rtems/untar.h>
#include "dl-load.h"
const char rtems_test_name[] = "libdl (RTL) 10";
/* forward declarations to avoid warnings */
static rtems_task Init(rtems_task_argument argument);
#include "dl10-tar.h"
#define TARFILE_START dl10_tar
#define TARFILE_SIZE dl10_tar_size
static int test(void)
{
#if USE_SHELL_CMD
int ret;
ret = dl_load_test();
if (ret)
rtems_test_exit(ret);
#endif
return 0;
}
static void Init(rtems_task_argument arg)
{
int e;
TEST_BEGIN();
e = Untar_FromMemory((void *)TARFILE_START, (size_t)TARFILE_SIZE);
if (e != 0)
{
printf ("error: untar failed: %d\n", e);
rtems_test_exit (1);
exit (1);
}
e = symlink ("libdl-dl10.conf", "/etc/libdl.conf");
if (e != 0)
{
printf ("error: untar failed: %d\n", e);
rtems_test_exit (1);
exit (1);
}
test();
rtems_shell_init_environment ();
printf ("RTL (libdl) commands: dl, rtl\n\n");
if (rtems_shell_add_cmd ("rtl",
"rtl",
"rtl -l",
rtems_rtl_shell_command) == NULL)
{
printf("command add failed\n");
rtems_test_exit(1);
exit (1);
}
rtems_shell_init ("SHLL",
RTEMS_MINIMUM_STACK_SIZE * 4,
100,
"/dev/foobar",
false,
true,
NULL);
TEST_END();
rtems_test_exit(0);
}
#define CONFIGURE_SHELL_COMMANDS_INIT
#define CONFIGURE_SHELL_COMMANDS_ALL
/*
* Remove the commands that pull in libblock.
*/
#define CONFIGURE_SHELL_NO_COMMAND_BLKSYNC
#define CONFIGURE_SHELL_NO_COMMAND_BLKSTATS
#define CONFIGURE_SHELL_NO_COMMAND_FDISK
#define CONFIGURE_SHELL_NO_COMMAND_MKRFS
#define CONFIGURE_SHELL_NO_COMMAND_DEBUGRFS
#include <rtems/shellconfig.h>
#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
#define CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS 10
#define CONFIGURE_MAXIMUM_TASKS 4
#define CONFIGURE_MAXIMUM_SEMAPHORES 4
#define CONFIGURE_INITIAL_EXTENSIONS RTEMS_TEST_INITIAL_EXTENSION
#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
#define CONFIGURE_INIT_TASK_STACK_SIZE (8U * 1024U)
#define CONFIGURE_INIT_TASK_ATTRIBUTES (RTEMS_DEFAULT_ATTRIBUTES | RTEMS_FLOATING_POINT)
#define CONFIGURE_UNIFIED_WORK_AREAS
#define CONFIGURE_UNLIMITED_OBJECTS
#define CONFIGURE_INIT
#include <rtems/confdefs.h>

View File

@@ -19,6 +19,7 @@ user-input: fileio
user-input: monitor
user-input: termios
user-input: top
user-input: dl10
#
# Benchmarks