summaryrefslogtreecommitdiff
path: root/testsuites/sptests/spcpucounter01 (follow)
AgeCommit message (Collapse)Author
2020-04-16Canonicalize config.h includeSebastian Huber
Use the following variant which was already used by most source files: #ifdef HAVE_CONFIG_H #include "config.h" #endif
2018-12-03Convert CPU counter ticks to/from sbintime_tSebastian Huber
The sbintime_t is an efficient time format. Add the ability to convert CPU counter ticks to/from sbintime_t.
2018-05-14spcpucounter01: Enable floating-point outputSebastian Huber
2018-04-10testsuite/sptests: Merged nested Makefile.am files into one Makefile.amChris Johns
This change is part of the testsuite Makefile.am reorganization. Update #3382
2017-11-06tests: Use simple console driverSebastian Huber
Update #3170. Update #3199.
2017-11-02tests: Delete obsolete TESTS_USE_PRINTFSebastian Huber
Update #3170. Update #3199.
2017-10-28tests: Remove TEST_INITSebastian Huber
The TEST_EXTERN is a used only by the system.h style tests and they use CONFIGURE_INIT appropriately. Update #3170. Update #3199.
2017-10-23testsuite: Use printk for all test output where possible.Chris Johns
- 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.
2016-06-21sptests/spcpucounter01: Resurrect workaroundSebastian Huber
Resurrect workaround accidentially removed by 3e2a3c49480b9888362d016dd202edd562d9e069.
2016-06-20sptests/spcpucounter01: Add some statisticsSebastian Huber
2014-03-25tests/sptests: Use <rtems/test.h>Sebastian Huber
2014-03-21Change all references of rtems.com to rtems.org.Chris Johns
2014-02-24sptests/spcpucounter01: Adjust testSebastian Huber
Adjust test to work with clock driver based CPU counters. They have a period equal to the clock tick interval.
2014-02-14score: Add CPU counter supportSebastian Huber
Add a CPU counter interface to allow access to a free-running counter. It is useful to measure short time intervals. This can be used for example to enable profiling of critical low-level functions. Add two busy wait functions rtems_counter_delay_ticks() and rtems_counter_delay_nanoseconds() implemented via the CPU counter.