summaryrefslogtreecommitdiffstats
path: root/testsuites/ada (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove tmoverhd which existed to produce the obsolete coverhd.hJoel Sherrill2020-09-1110-2964/+0
| | | | Closes #4040.
* libtest: <rtems/test.h> to <rtems/test-info.h>Sebastian Huber2020-07-231-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.
* config: Remove CONFIGURE_DISABLE_SMP_CONFIGURATIONSebastian Huber2020-02-251-2/+0
| | | | | | | | | | The CONFIGURE_DISABLE_SMP_CONFIGURATION configuration option and rtems_configuration_is_smp_enabled() were added during the SMP support development cycle as a workaround to fix some testsuite failures in SMP configurations. All use cases were replaced with tests for specific conditions. The configuration option and test macro were undocumented. Close #3876.
* config: Remove Ada configuration optionsSebastian Huber2019-12-192-2/+4
| | | | Update #3845.
* rtems: Add and use rtems_object_get_local_node()Sebastian Huber2019-12-131-2/+1
| | | | Update #3841.
* ada/sp19: Add m4 generated sptest.adbSebastian Huber2019-11-292-0/+2996
| | | | Update #3818.
* testsuites/ada: Introduce init.c filesSebastian Huber2019-11-27181-155/+155
| | | | | | | Provide an init.c for each Ada test instead of the #include <config.h> magic which works only due to hand crafted include paths. Update #3818.
* ada/mptests: Make them compile cleanSebastian Huber2019-11-1219-127/+195
| | | | | | Fix all warnings. Update #3818.
* ada/samples: Avoid build system defined definesSebastian Huber2019-11-124-8/+8
| | | | Update #3818.
* build: Move test support to librtemstest.aSebastian Huber2019-03-261-1/+1
| | | | | | | | One reason to move the test support into a dedicated library are the standard output __wrap_*() functions. They may conflict with application level wrappers. Update #3199.
* build: Remove local.amSebastian Huber2018-10-10105-105/+0
|
* build: Remove subdir-objects from Ada testsSebastian Huber2018-04-201-1/+1
| | | | | | | | | | | Somehow it does not work. With this Automake option you get: gmake[6]: Entering directory '/build/sparc-rtems5/c/erc32/testsuites/ada/sptests' Making all-am in sp01 gmake[7]: Entering directory '/build/sparc-rtems5/c/erc32/testsuites/ada/sptests/sp01' gmake[7]: *** No rule to make target 'init.o', needed by 'ada_sp01.exe'. Stop. Update #3387.
* configure: Add subdir-objects to all automake flags.Chris Johns2018-04-111-1/+1
| | | | | | | | | | | This option silences warning with automake-1.16.1 allowing us to upgrade to that version. This change has been tested with automake-1.12.6 and automake-1.16.1. It seems version 1.16.1 configures slower than 1.12.6 for the same source and BSP. The newer versions is 6 second slower. Close #3387.
* build: Remove EXTRA_DISTSebastian Huber2018-04-043-19/+0
| | | | | A "make dist" is not supported. So, it makes no sense to have pure "make dist" related stuff in the Makefile.am.
* Add a simple task console driverSebastian Huber2018-03-062-2/+3
| | | | Close #3320.
* ada/sp04: Fix test failure due to compiler optiSebastian Huber2018-02-221-0/+1
| | | | | The SPTEST.RUN_COUNT must be volatile since it is changed outside of the procedure scope by the thread switch extension.
* ada: Introduce RTEMS.Size typeSebastian Huber2018-01-2915-32/+39
| | | | | | | Some time ago the Classic API object size related parameters were changed to use size_t. Reflect this in the Ada bindings. Update #3082.
* Remove make preinstallChris Johns2018-01-259-13/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A speciality of the RTEMS build system was the make preinstall step. It copied header files from arbitrary locations into the build tree. The header files were included via the -Bsome/build/tree/path GCC command line option. This has at least seven problems: * The make preinstall step itself needs time and disk space. * Errors in header files show up in the build tree copy. This makes it hard for editors to open the right file to fix the error. * There is no clear relationship between source and build tree header files. This makes an audit of the build process difficult. * The visibility of all header files in the build tree makes it difficult to enforce API barriers. For example it is discouraged to use BSP-specifics in the cpukit. * An introduction of a new build system is difficult. * Include paths specified by the -B option are system headers. This may suppress warnings. * The parallel build had sporadic failures on some hosts. This patch removes the make preinstall step. All installed header files are moved to dedicated include directories in the source tree. Let @RTEMS_CPU@ be the target architecture, e.g. arm, powerpc, sparc, etc. Let @RTEMS_BSP_FAMILIY@ be a BSP family base directory, e.g. erc32, imx, qoriq, etc. The new cpukit include directories are: * cpukit/include * cpukit/score/cpu/@RTEMS_CPU@/include * cpukit/libnetworking The new BSP include directories are: * bsps/include * bsps/@RTEMS_CPU@/include * bsps/@RTEMS_CPU@/@RTEMS_BSP_FAMILIY@/include There are build tree include directories for generated files. The include directory order favours the most general header file, e.g. it is not possible to override general header files via the include path order. The "bootstrap -p" option was removed. The new "bootstrap -H" option should be used to regenerate the "headers.am" files. Update #3254.
* ada: Check C and POSIX typesSebastian Huber2017-12-044-3/+187
| | | | Update #3256.
* ada/sp09: Fix timer server test caseSebastian Huber2017-12-041-1/+1
| | | | A priority of zero is valid for the timer server.
* ada/sp09: Fix region test casesSebastian Huber2017-12-042-16/+17
|
* ada: Fix work_space_size() test supportSebastian Huber2017-12-041-1/+2
|
* ada/tm04: Account for task delete behaviour changeSebastian Huber2017-12-041-0/+9
|
* ada/sp19: Add missing FP attributeSebastian Huber2017-12-021-2/+2
|
* ada/sp07: Fix uninitialized variableSebastian Huber2017-12-011-0/+2
| | | | | | Bug was introduced by d5154d0f6a04f3b7ed59d9a09038576fe2640756. Updates #2493.
* ada: Fix user extension supportSebastian Huber2017-12-011-2/+2
|
* ada: Use CONFIGURE_DISABLE_SMP_CONFIGURATIONSebastian Huber2017-12-011-0/+2
| | | | | | Most Ada tests fail otherwise. Update #3020.
* ada/tm20: Account for optional heap protectionSebastian Huber2017-12-011-3/+3
| | | | | Reduce size of the big allocation block to account for the optional heap protection (RTEMS_DEBUG).
* ada/spname01: Fix several issuesSebastian Huber2017-12-013-9/+9
|
* ada: Add standard test begin/end messageSebastian Huber2017-12-01144-144/+324
|
* ada: Delete superfluous CONFIGURE_SPTESTSebastian Huber2017-12-0124-48/+0
|
* ada/sp04: Fix clock getSebastian Huber2017-11-241-1/+1
| | | | Update #2676.
* tests: Use simple console driverSebastian Huber2017-11-0671-71/+71
| | | | | Update #3170. Update #3199.
* ada-tests: Move to testsuites/adaSebastian Huber2017-10-12506-0/+44876
This solves a build dependency issue, e.g. building tests before librtemsbsp.a exists. Close #3079.