summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/dl01/dl01-o1.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-09-26tests: Add header for RTEMS test printerSebastian Huber1-1/+1
The <rtems/test-info.h> header file is required for every RTEMS test program. Move the RTEMS test printer support to a dedicated header file <rtems/test-printer.h>. This removes an unnecessary dependency to the RTEMS printer support in <rtems/test-info.h>. Tests using the RTEMS Testing Framework no longer depend on the <rtems/printer.h>.
2022-04-07testsuites/libtests/dl*: Change license to BSD-2Joel Sherrill1-3/+22
Updates #3053.
2020-07-23libtest: <rtems/test.h> to <rtems/test-info.h>Sebastian Huber1-1/+1
Rename this header file to later move <t.h> to <rtems/test.h>. The main feature provided by <rtems/test-info.h> is the output of standard test information which is consumed by the RTEMS Tester. Update #3199.
2019-11-26libtests/dl*: Rename source filesSebastian Huber1-0/+0
Rename source files to use a %.c -> %.o and %.cc -> %.o pattern. Use *.cc for C++ source files instead of *.cpp to be in line with other C++ source files. Update #3818.
2017-11-15dl01, dl02, dl05: Fix unresolved printf symbolSebastian Huber1-4/+3
The link time wrap of printf leads to unresolved symbols in the loadable modules. This resulted in infinite loops and test timeouts. Use rtems_printf() for output. Update #3199.
2014-10-31cpukit: Add libdl with the Runtime Loader (RTL) code.Chris Johns1-0/+31
This is a merge of the RTL project.