summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtmtests (follow)
Commit message (Collapse)AuthorAgeFilesLines
* psxtmtests: Avoid build system defined definesSebastian Huber2019-11-125-189/+193
| | | | Update #3818.
* Correct psxtmtests_plan.csvShashvat Jain2019-03-111-3/+3
|
* testsuite: Make the OPERATION_COUNT a test configuration parameter.Chris Johns2019-03-0712-116/+106
| | | | | - Add a small memory test config file. - Update the small memory PowerPC BSPs to use the new test config.
* build: Do not install test programsSebastian Huber2019-01-301-2/+1
|
* psxtmtests: Fix format warningsSebastian Huber2019-01-284-36/+36
| | | | Update #3384.
* psxtmtests: Changed the copyright license to BSD-2-Clause (GCI 2018)Himanshu402018-12-2210-125/+240
|
* score: Avoid sbintime_t in API headersSebastian Huber2018-12-071-0/+1
| | | | | | | | | | The sbintime_t is a non-POSIX type and not visible if strict standard options are selected. Move implementation details from <rtems/score/timestamp.h> to <rtems/score/timestampimpl.h>. Update #3598.
* psxtmtests_plan.csv: Add preemption cases for pthread_setschedprioJoel Sherrill2018-12-061-1/+3
|
* psxtmtests/psxtmtests_plan.csv: Fix typos (GCI 2018)Marçal Comajoan Cara2018-12-061-3/+3
| | | | | | | Two quotation marks were missing so the CSV looked bad when using an editor with syntax highlighting and could also have produced some errors if the file was processed. Also two "Yes" ys were lowercase and I uppercased them so they are like the rest.
* psxtmtests: Identified a Timing Test missing (GCI 2018)Marçal Comajoan Cara2018-12-061-0/+2
| | | | | | | pthread_setschedprio (http://pubs.opengroup.org/onlinepubs/9699919799/) was missing in rtems/testsuites/psxtmtests/psxtmtests.csv. This work was part of GCI 2018.
* psxtmcleanup01/init.c: Fix warningsJoel Sherrill2018-12-051-1/+1
|
* psxtmtests: add psxtmmqrcvblock02 (GCI 2018)Himanshu402018-11-255-1/+165
|
* psxtmbarrierattr01: Added new POSIX timing suite (GCI 2018)Himanshu402018-11-215-0/+181
|
* psxtmutexattr01: Added new POSIX timing suite (GCI 2018)Himanshu402018-11-205-0/+327
|
* psxtmcleanup01: new POSIX timing suite (GCI 2018)Himanshu402018-11-175-2/+128
|
* psxtmtests_plan.csv: Update to reflect psxtmmqrcvblock01 (GCI 2018)shashvatjain2018-11-161-1/+1
|
* psxtmmqrcvblock01: Add new POSIX timing test (GCI 2018)shashvatjain2018-11-154-1/+157
|
* psxtmthreadattr01: Correct mistakes in previous merge (GCI 2018)Himanshu402018-11-152-14/+16
| | | | Joel admits to grabbing one iteration too early of the patch. :(
* psxtmthreadattr01: Add new test (GCI 2018)Himanshu402018-11-155-17/+485
|
* psxtmtests_plan.csv: Add pthread cleanup and attr test casesJoel Sherrill2018-11-111-2/+20
|
* psxtmtests_plan.csv: Add psxtmonce01Joel Sherrill2018-11-071-1/+1
|
* psxtmonce01/init.c: Use static and Simple ConsoleJoel Sherrill2018-11-071-10/+5
|
* build: Remove superfluous psxtmonce01/Makefile.amSebastian Huber2018-11-071-27/+0
|
* psxtmonce01: New test written by Himanshu40 as part of GCI2018Himanshu402018-11-065-0/+139
|
* posix: Enable psxtmtests tests by defaultSebastian Huber2018-10-292-98/+2
| | | | Update #2514.
* build: Remove local.amSebastian Huber2018-10-101-1/+0
|
* tests: Remove configure feature checksSebastian Huber2018-05-021-48/+0
| | | | Update #3409.
* 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/psxtmtests: Merged nested Makefile.am files into one Makefile.amChris Johns2018-04-1051-1370/+711
| | | | | | 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-2419-19/+0
| | | | | | | This header file contained timing overhead values which are hard to maintain. Update #3254.
* tests: Use simple console driverSebastian Huber2017-11-0647-47/+47
| | | | | Update #3170. Update #3199.
* tests: Remove TEST_INITSebastian Huber2017-10-2847-94/+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-2347-23/+118
| | | | | | | | | | - 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.
* posix: Implement self-contained POSIX mutexSebastian Huber2017-10-0512-12/+0
| | | | | | | | POSIX mutexes are now available in all configurations and no longer depend on --enable-posix. Update #2514. Update #3112.
* posix: Implement self-contained POSIX condvarSebastian Huber2017-10-058-9/+0
| | | | | | | | POSIX condition variables are now available in all configurations and no longer depend on --enable-posix. Update #2514. Update #3113.
* posix: Implement self-contained POSIX rwlocksSebastian Huber2017-10-057-7/+0
| | | | | | | | POSIX rwlocks are now available in all configurations and no longer depend on --enable-posix. Update #2514. Update #3115.
* posix: Implement self-contained POSIX barriersSebastian Huber2017-10-054-4/+0
| | | | | | | | POSIX barriers are now available in all configurations and no longer depend on --enable-posix. Update #2514. Update #3114.
* posix: Implement self-contained POSIX semaphoresSebastian Huber2017-10-054-4/+0
| | | | | | | | | | | | | | For semaphore object pointer and object validation see POSIX_SEMAPHORE_VALIDATE_OBJECT(). Destruction or close of a busy semaphore returns an error status. The object is not flushed. POSIX semaphores are now available in all configurations and no longer depend on --enable-posix. Update #2514. Update #3116.
* testsuite: Add a common test configuration. Fix configure.ac and Makefile.am ↵Chris Johns2017-04-041-51/+51
| | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* posix: add clock_nanosleep and testsGedare Bloom2016-07-2511-0/+395
| | | | updates #2732
* posix: Simplify message queuesSebastian Huber2016-05-021-1/+0
| | | | | | | | | | | | The mq_open() function returns a descriptor to a POSIX message queue object identified by a name. This is similar to sem_open(). In contrast to the POSIX semaphore the POSIX message queues use a separate object for the descriptor. This extra object is superfluous, since the object identifier can be used directly for this purpose, just like for the semaphores. Update #2702. Update #2555.
* psxtmtests_plan.csv: Fix typoJoel Sherrill2015-12-011-1/+1
|
* psxtmtests: Use timeout in more distant futureAlexander Krutwig2015-03-311-2/+3
| | | | Adds future compatibility with strict monontonic software timestamps.
* Update bug report URLSebastian Huber2014-12-051-1/+1
|
* Use correct prototype of benchmark_timer_read()Joel Sherrill2014-09-1643-43/+43
| | | | | | | | | | | | | | 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.
* Misc psxtmtests: Use uint32_t not long for end_time to match printf() format ↵Joel Sherrill2014-09-0411-26/+27
| | | | expectations
* psxtmtests: Add test.h supportbjorn larsson2014-03-2544-88/+176
|
* Change all references of rtems.com to rtems.org.Chris Johns2014-03-2188-88/+88
|
* psxtmtests: added psxtmcond07 testDaniel Ramirez2013-12-096-1/+183
|