linux-rt-users.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/34] rt-tests fixes and cleanups
@ 2017-05-22  8:25 Tommi Rantala
  2017-05-22  8:25 ` [PATCH 01/34] rt-utils: add cpus_online() helper Tommi Rantala
                   ` (29 more replies)
  0 siblings, 30 replies; 50+ messages in thread
From: Tommi Rantala @ 2017-05-22  8:25 UTC (permalink / raw)
  To: Clark Williams, John Kacur; +Cc: linux-rt-users, Tommi Rantala

Hi, various fixes and cleanups to rt-tests, developed on top of the
"unstable/devel/v1.1.1" branch.

Also available here on the devel-11 branch:
https://github.com/rantala/rt-tests

Tommi Rantala (34):
  rt-utils: add cpus_online() helper
  cyclictest: use cpus_online() helper
  cyclictest: always clear stop to avoid -Wmaybe-uninitialized warning
  cyclictest: remove extra argument in warn() and fatal() calls
  cyclictest: fix signed vs unsigned compiler warnings
  cyclictest: fix typo in warn() message
  cyclictest: update --smp help: -n was removed
  cyclictest: adjust whitespace in display_help() output
  cyclictest: use %p for printing void*, and print stack size separately
  cyclictest: use %zd for printing size_t in rt_numa_numa_alloc_onnode()
  cyclictest: max_cpus unused in this variant of
    rt_numa_parse_cpustring()
  cyclictest: fix off-by-one in clocksel check
  cyclictest: check timer_getoverrun() return value for failure
  cyclictest: fix MODE_CYCLIC measurement failure after timer overruns
  cyclictest: param is unused in fifothread()
  cyclictest: normalize next before tsgreater() check
  cyclictest: tsnorm() after adjusting next
  pip_stress: fix missing argument in err_msg() call in
    process_shared_mutex_available()
  pip_stress: getopt.h and long_options[] are unused
  pi_stress: use cpus_online() helper
  pi_stress: use %lu for unsigned long
  pi_stress: add missing argument in pi_error() call
  svsematest: test .mindiff against UINT_MAX
  signaltest: remove unused ARRAY_SIZE macro
  deadline_test: fix stack corruption in setup_ftrace_marker()
  deadline_test: remove unused tid parameter in do_runtime()
  deadline_test: tv_nsec is long
  deadline_test: use %llu for printing unsigned long longs
  cyclicdeadline: fix stack corruption in setup_ftrace_marker()
  cyclicdeadline: remove unused tid parameter from do_runtime()
  cyclicdeadline: avoid signed vs unsigned compiler warnings
  printf format attributes and format string constness in error helpers
  mark unused sighand() parameters with unused attribute
  read-only struct option array constness

 src/backfire/sendme.c                 |  2 +-
 src/cyclictest/cyclictest.c           | 56 ++++++++++++++++++---------------
 src/cyclictest/rt_numa.h              |  4 +--
 src/hackbench/hackbench.c             |  2 +-
 src/include/error.h                   | 16 +++++-----
 src/include/rt-utils.h                |  1 +
 src/lib/error.c                       | 16 +++++-----
 src/lib/rt-utils.c                    | 12 +++++++
 src/pi_tests/classic_pi.c             |  2 +-
 src/pi_tests/pi_stress.c              | 12 +++----
 src/pi_tests/pip_stress.c             |  8 +----
 src/pmqtest/pmqtest.c                 |  4 +--
 src/ptsematest/ptsematest.c           |  4 +--
 src/rt-migrate-test/rt-migrate-test.c |  2 +-
 src/sched_deadline/cyclicdeadline.c   | 14 ++++-----
 src/sched_deadline/deadline_test.c    | 59 +++++++++++++++++------------------
 src/signaltest/signaltest.c           |  6 ++--
 src/sigwaittest/sigwaittest.c         |  4 +--
 src/svsematest/svsematest.c           |  6 ++--
 19 files changed, 120 insertions(+), 110 deletions(-)

-- 
2.9.3


^ permalink raw reply	[flat|nested] 50+ messages in thread

end of thread, other threads:[~2017-06-08 14:28 UTC | newest]

Thread overview: 50+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-05-22  8:25 [PATCH 00/34] rt-tests fixes and cleanups Tommi Rantala
2017-05-22  8:25 ` [PATCH 01/34] rt-utils: add cpus_online() helper Tommi Rantala
2017-05-22  8:25 ` [PATCH 02/34] cyclictest: use " Tommi Rantala
2017-05-22  8:25 ` [PATCH 03/34] cyclictest: always clear stop to avoid -Wmaybe-uninitialized warning Tommi Rantala
2017-05-22  8:25 ` [PATCH 04/34] cyclictest: remove extra argument in warn() and fatal() calls Tommi Rantala
2017-05-22  8:25 ` [PATCH 05/34] cyclictest: fix signed vs unsigned compiler warnings Tommi Rantala
2017-05-22  8:25 ` [PATCH 06/34] cyclictest: fix typo in warn() message Tommi Rantala
2017-05-22 15:35   ` John Kacur
2017-05-22  8:25 ` [PATCH 07/34] cyclictest: update --smp help: -n was removed Tommi Rantala
2017-05-22 16:07   ` John Kacur
2017-05-22  8:25 ` [PATCH 08/34] cyclictest: adjust whitespace in display_help() output Tommi Rantala
2017-05-22 16:08   ` John Kacur
2017-05-22  8:25 ` [PATCH 09/34] cyclictest: use %p for printing void*, and print stack size separately Tommi Rantala
2017-05-22  8:25 ` [PATCH 10/34] cyclictest: use %zd for printing size_t in rt_numa_numa_alloc_onnode() Tommi Rantala
2017-05-22 15:25   ` John Kacur
2017-05-22  8:25 ` [PATCH 11/34] cyclictest: max_cpus unused in this variant of rt_numa_parse_cpustring() Tommi Rantala
2017-05-22  8:25 ` [PATCH 12/34] cyclictest: fix off-by-one in clocksel check Tommi Rantala
2017-05-22 16:23   ` John Kacur
2017-05-22  8:25 ` [PATCH 13/34] cyclictest: check timer_getoverrun() return value for failure Tommi Rantala
2017-05-22  8:25 ` [PATCH 14/34] cyclictest: fix MODE_CYCLIC measurement failure after timer overruns Tommi Rantala
2017-05-22  8:25 ` [PATCH 15/34] cyclictest: param is unused in fifothread() Tommi Rantala
2017-05-22 16:29   ` John Kacur
2017-05-22  8:25 ` [PATCH 16/34] cyclictest: normalize next before tsgreater() check Tommi Rantala
2017-05-22  8:25 ` [PATCH 17/34] cyclictest: tsnorm() after adjusting next Tommi Rantala
2017-05-22  8:25 ` [PATCH 18/34] pip_stress: fix missing argument in err_msg() call in process_shared_mutex_available() Tommi Rantala
2017-05-22 16:36   ` John Kacur
2017-05-22  8:25 ` [PATCH 19/34] pip_stress: getopt.h and long_options[] are unused Tommi Rantala
2017-05-22 16:39   ` John Kacur
2017-05-22  8:25 ` [PATCH 20/34] pi_stress: use cpus_online() helper Tommi Rantala
2017-05-22  8:25 ` [PATCH 21/34] pi_stress: use %lu for unsigned long Tommi Rantala
2017-05-22 15:34   ` John Kacur
2017-05-22  8:25 ` [PATCH 22/34] pi_stress: add missing argument in pi_error() call Tommi Rantala
2017-05-22 15:14   ` John Kacur
2017-05-22  8:25 ` [PATCH 23/34] svsematest: test .mindiff against UINT_MAX Tommi Rantala
2017-05-22 15:20   ` John Kacur
2017-05-22  8:25 ` [PATCH 24/34] signaltest: remove unused ARRAY_SIZE macro Tommi Rantala
2017-05-22 16:44   ` John Kacur
2017-06-05 10:06     ` Tommi Rantala
2017-06-08 14:28       ` John Kacur
2017-05-22  8:25 ` [PATCH 25/34] deadline_test: fix stack corruption in setup_ftrace_marker() Tommi Rantala
2017-05-22  8:25 ` [PATCH 26/34] deadline_test: remove unused tid parameter in do_runtime() Tommi Rantala
2017-05-22  8:25 ` [PATCH 27/34] deadline_test: tv_nsec is long Tommi Rantala
2017-05-22  8:25 ` [PATCH 28/34] deadline_test: use %llu for printing unsigned long longs Tommi Rantala
2017-05-22  8:25 ` [PATCH 29/34] cyclicdeadline: fix stack corruption in setup_ftrace_marker() Tommi Rantala
2017-05-22  9:04 ` [PATCH 30/34] cyclicdeadline: remove unused tid parameter from do_runtime() Tommi Rantala
2017-05-22  9:04   ` [PATCH 31/34] cyclicdeadline: avoid signed vs unsigned compiler warnings Tommi Rantala
2017-05-22  9:04   ` [PATCH 32/34] printf format attributes and format string constness in error helpers Tommi Rantala
2017-05-22  9:04   ` [PATCH 33/34] mark unused sighand() parameters with unused attribute Tommi Rantala
2017-05-22 15:47     ` John Kacur
2017-05-22  9:04   ` [PATCH 34/34] read-only struct option array constness Tommi Rantala

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).