summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/dl06 (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-09-26tests: Add header for RTEMS test printerSebastian Huber2-2/+2
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-07-29libtests/dl*: Bump up the size of CONFIGURE_INIT_TASK_STACK_SIZERyan Long1-1/+1
Updates #4682
2022-04-27libtests/dl06: Manually adding file headers and licenses.Ryan Long2-0/+70
These files had no header, copyright, or license. Based on git history, added appropriate copyright and license.
2022-04-12testsuites/libtests/[a-l]*: Change license to BSD-2Joel Sherrill1-3/+22
Updates #3053.
2022-04-07testsuites/libtests/dl*: Change license to BSD-2Joel Sherrill6-18/+132
Updates #3053.
2020-07-23libtest: <rtems/test.h> to <rtems/test-info.h>Sebastian Huber2-2/+2
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.
2020-05-05testsuite/dl06: Add a local define to control tracingChris Johns1-0/+2
Closes #3969
2020-04-16Canonicalize config.h includeSebastian Huber1-1/+1
Use the following variant which was already used by most source files: #ifdef HAVE_CONFIG_H #include "config.h" #endif
2019-12-19config: CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORSSebastian Huber1-1/+1
Rename CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS into CONFIGURE_MAXIMUM_FILE_DESCRIPTORS. Update #3753.
2019-12-05libtest: Change expected pass state stringSebastian Huber1-1/+1
Use separator character '_' for all test states.
2019-11-26libtests/dl*: Use rtems_tarfs_load()Sebastian Huber1-2/+2
Use rtems_tarfs_load() instead of Untar_FromMemory() to reduce the memory demands of the tests.
2019-11-25libtests/dl*: Do not generate files via "echo"Sebastian Huber1-0/+1
Add the static files to the repository. This simplifies the build. Update #3818.
2019-11-12libtests: Avoid build system defined definesSebastian Huber3-88/+91
Update #3818.
2018-08-15dl06/dl06-o1.c: Remove set, not used warningJoel Sherrill1-1/+4
2018-07-30libtests: Use CONFIGURE_INIT_TASK_TABLE_SIZESebastian Huber1-4/+3
Using CONFIGURE_MINIMUM_TASK_STACK_SIZE increases also the interrupt stack size. This is an issue on some BSPs. Use CONFIGURE_INIT_TASK_TABLE_SIZE instead. Update #3433.
2018-04-12testsuites/dl06: Add a test for RAP format.Chris Johns8-0/+349
This test loads a RAP format file that contains calls that are not in the kernel and linked from libm. It uses and test rtems-ld. Update #2769