summaryrefslogtreecommitdiffstats
path: root/testsuites/rhealstone (follow)
Commit message (Collapse)AuthorAgeFilesLines
* build: Remove old build systemSebastian Huber2021-09-212-105/+0
| | | | | Close #3250. Close #4081.
* testsuites: Remove rtems_test_pause*()Sebastian Huber2019-12-041-2/+0
| | | | | | | | | | | | | The rtems_test_pause() and rtems_test_pause_and_screen_number() macros had different implementations depending on the RTEMS_TEST_NO_PAUSE define. This define was defined to 1 by default. The user was able to change this via the undocumented --disable-test-no-pause configure command line option. Pausing tests and waiting for user input contradicts the goal of having automated test runs. Remove this feature. Update #3818.
* build: Do not install test programsSebastian Huber2019-01-301-3/+1
|
* build: Remove local.amSebastian Huber2018-10-101-1/+0
|
* tests: Use rtems_task_exit()Sebastian Huber2018-10-054-8/+4
| | | | Update #3533.
* 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.
* testsuite/irhealstone: Merged nested Makefile.am files into one Makefile.amChris Johns2018-04-108-155/+78
| | | | | | This change is part of the testsuite Makefile.am reorganization. Update #3382
* Remove make preinstallChris Johns2018-01-251-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* Remove coverhd.hSebastian Huber2017-11-241-1/+0
| | | | | | | This header file contained timing overhead values which are hard to maintain. Update #3254.
* tests: Use simple console driverSebastian Huber2017-11-066-6/+6
| | | | | Update #3170. Update #3199.
* tests: Remove TEST_INITSebastian Huber2017-10-286-12/+0
| | | | | | | | The TEST_EXTERN is a used only by the system.h style tests and they use CONFIGURE_INIT appropriately. Update #3170. Update #3199.
* testsuite: Use printk for all test output where possible.Chris Johns2017-10-236-0/+12
| | | | | | | | | | - Remove the printf support leaving the direct printk support configured with TESTS_USE_PRINTK and all other output goes via a buffered vsniprintf call to printk. - Control the test's single init for functions and global data with TEST_INIT and not CONFIGURE_INIT. They are now separate. Updates #3170.
* testsuite: Add a common test configuration. Fix configure.ac and Makefile.am ↵Chris Johns2017-04-042-9/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | errors. - Add a top level test configuration file for test states that are common to all BSPs. This saves adding a test configuration (tcfg) file for every BSP. - Add the test states 'user-input' and 'benchmark'. This lets 'rtems-test' stop the test rather than waiting for a timeout or letting a benchmark run without the user asking for it to run. - Implement rtems-test-check in Python to make it faster. The shell script had grown to a point it was noticably slowing the build down. - Fix the configure.ac and Makefile.am files for a number of the test directories. The files are difficiult to keep in sync with the number of tests and mistakes can happen such as tests being left out of the build. The test fsrofs01 is an example. Also a there was a mix of SUBDIRS and _SUBDIRS being used and only _SUBDIRS should be used. - Fix the test fsrofs01 so it compiles. Closes #2963.
* rhealstone/rhtaskpreempt/taskpreempt.c: Fix warning due to oddly placed ↵Joel Sherrill2016-01-241-2/+2
| | | | semi-colon
* Update bug report URLSebastian Huber2014-12-051-1/+1
|
* Use correct prototype of benchmark_timer_read()Joel Sherrill2014-09-166-6/+6
| | | | | | | | | | | | | | This change starts with removing the effectively empty file timerdrv.h. The prototypes for benchmark_timer_XXX() were in btimer.h which was not universally used. Thus every use of timerdrv.h had to be changed to btimer.h. Then the prototypes for benchmark_timer_read() had to be adjusted to return benchmark_timer_t rather than int or uint32_t. I took this opportunity to also correct the file headers to separate the copyright from the file description comments which is needed to ensure the copyright isn't propagated into Doxygen output.
* rhealstone: Produce proper begin/end messagesSebastian Huber2014-06-036-12/+25
|
* score: Static scheduler configurationSebastian Huber2014-04-151-1/+5
| | | | | | Do not allocate the scheduler control structures from the workspace. This is a preparation step for configuration of clustered/partitioned schedulers on SMP.
* rhealstone/rhmlatency: Fix configurationSebastian Huber2014-04-041-0/+2
|
* score: Delete _Thread_Dispatch_set_disable_level()Sebastian Huber2014-03-061-1/+0
| | | | | This function was only used in some tests and can be replaced with other functions.
* rhealstone: Add start end and messagesJoel Sherrill2014-01-076-0/+18
|
* rhealstone: Add rh prefix to all test namesJoel Sherrill2014-01-0526-152/+159
| | | | This makes them easier to spot as a group in wildcard searches.
* rhealstone/*.c: Add Print_Warning() call to indicate debug enabledJoel Sherrill2014-01-056-1/+11
|
* rhealstone/README: FormattingJoel Sherrill2014-01-051-4/+5
|
* Added Rhealstone benchmark to testsuitesDaniel Ramirez2014-01-0521-0/+1232
The Rhealstone benchmarks six operations that are critical components of a real-time system. It allows for an objective analysis to be performed, and allows for comparisons between systems. See rhealstone/README for more information.