summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/dl06 (follow)
Commit message (Collapse)AuthorAgeFilesLines
* tests: Add header for RTEMS test printerSebastian Huber2023-09-262-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>.
* libtests/dl*: Bump up the size of CONFIGURE_INIT_TASK_STACK_SIZERyan Long2022-07-291-1/+1
| | | | Updates #4682
* libtests/dl06: Manually adding file headers and licenses.Ryan Long2022-04-272-0/+70
| | | | | These files had no header, copyright, or license. Based on git history, added appropriate copyright and license.
* testsuites/libtests/[a-l]*: Change license to BSD-2Joel Sherrill2022-04-121-3/+22
| | | | Updates #3053.
* testsuites/libtests/dl*: Change license to BSD-2Joel Sherrill2022-04-076-18/+132
| | | | Updates #3053.
* libtest: <rtems/test.h> to <rtems/test-info.h>Sebastian Huber2020-07-232-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.
* testsuite/dl06: Add a local define to control tracingChris Johns2020-05-051-0/+2
| | | | Closes #3969
* Canonicalize config.h includeSebastian Huber2020-04-161-1/+1
| | | | | | | | Use the following variant which was already used by most source files: #ifdef HAVE_CONFIG_H #include "config.h" #endif
* config: CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORSSebastian Huber2019-12-191-1/+1
| | | | | | | Rename CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS into CONFIGURE_MAXIMUM_FILE_DESCRIPTORS. Update #3753.
* libtest: Change expected pass state stringSebastian Huber2019-12-051-1/+1
| | | | Use separator character '_' for all test states.
* libtests/dl*: Use rtems_tarfs_load()Sebastian Huber2019-11-261-2/+2
| | | | | Use rtems_tarfs_load() instead of Untar_FromMemory() to reduce the memory demands of the tests.
* libtests/dl*: Do not generate files via "echo"Sebastian Huber2019-11-251-0/+1
| | | | | | Add the static files to the repository. This simplifies the build. Update #3818.
* libtests: Avoid build system defined definesSebastian Huber2019-11-123-88/+91
| | | | Update #3818.
* dl06/dl06-o1.c: Remove set, not used warningJoel Sherrill2018-08-151-1/+4
|
* libtests: Use CONFIGURE_INIT_TASK_TABLE_SIZESebastian Huber2018-07-301-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.
* testsuites/dl06: Add a test for RAP format.Chris Johns2018-04-128-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