summaryrefslogtreecommitdiff
path: root/testsuites/ada (follow)
AgeCommit message (Collapse)Author
2020-02-25config: Remove CONFIGURE_DISABLE_SMP_CONFIGURATIONSebastian Huber
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.
2019-12-19config: Remove Ada configuration optionsSebastian Huber
Update #3845.
2019-12-13rtems: Add and use rtems_object_get_local_node()Sebastian Huber
Update #3841.
2019-11-29ada/sp19: Add m4 generated sptest.adbSebastian Huber
Update #3818.
2019-11-27testsuites/ada: Introduce init.c filesSebastian Huber
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.
2019-11-12ada/mptests: Make them compile cleanSebastian Huber
Fix all warnings. Update #3818.
2019-11-12ada/samples: Avoid build system defined definesSebastian Huber
Update #3818.
2019-03-26build: Move test support to librtemstest.aSebastian Huber
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.
2018-10-10build: Remove local.amSebastian Huber
2018-04-20build: Remove subdir-objects from Ada testsSebastian Huber
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.
2018-04-11configure: Add subdir-objects to all automake flags.Chris Johns
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.
2018-04-04build: Remove EXTRA_DISTSebastian Huber
A "make dist" is not supported. So, it makes no sense to have pure "make dist" related stuff in the Makefile.am.
2018-03-06Add a simple task console driverSebastian Huber
Close #3320.
2018-02-22ada/sp04: Fix test failure due to compiler optiSebastian Huber
The SPTEST.RUN_COUNT must be volatile since it is changed outside of the procedure scope by the thread switch extension.
2018-01-29ada: Introduce RTEMS.Size typeSebastian Huber
Some time ago the Classic API object size related parameters were changed to use size_t. Reflect this in the Ada bindings. Update #3082.
2018-01-25Remove make preinstallChris Johns
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.
2017-12-04ada: Check C and POSIX typesSebastian Huber
Update #3256.
2017-12-04ada/sp09: Fix timer server test caseSebastian Huber
A priority of zero is valid for the timer server.
2017-12-04ada/sp09: Fix region test casesSebastian Huber
2017-12-04ada: Fix work_space_size() test supportSebastian Huber
2017-12-04ada/tm04: Account for task delete behaviour changeSebastian Huber
2017-12-02ada/sp19: Add missing FP attributeSebastian Huber
2017-12-01ada/sp07: Fix uninitialized variableSebastian Huber
Bug was introduced by d5154d0f6a04f3b7ed59d9a09038576fe2640756. Updates #2493.
2017-12-01ada: Fix user extension supportSebastian Huber
2017-12-01ada: Use CONFIGURE_DISABLE_SMP_CONFIGURATIONSebastian Huber
Most Ada tests fail otherwise. Update #3020.
2017-12-01ada/tm20: Account for optional heap protectionSebastian Huber
Reduce size of the big allocation block to account for the optional heap protection (RTEMS_DEBUG).
2017-12-01ada/spname01: Fix several issuesSebastian Huber
2017-12-01ada: Add standard test begin/end messageSebastian Huber
2017-12-01ada: Delete superfluous CONFIGURE_SPTESTSebastian Huber
2017-11-24ada/sp04: Fix clock getSebastian Huber
Update #2676.
2017-11-06tests: Use simple console driverSebastian Huber
Update #3170. Update #3199.
2017-10-12ada-tests: Move to testsuites/adaSebastian Huber
This solves a build dependency issue, e.g. building tests before librtemsbsp.a exists. Close #3079.