From 6e98ea91571f2945f5c2fee9dc35f755739bd2eb Mon Sep 17 00:00:00 2001 From: Gedare Bloom Date: Thu, 9 Jun 2016 11:40:35 -0400 Subject: posix: add clock_nanosleep and tests updates #2732 --- testsuites/psxtmtests/Makefile.am | 3 + testsuites/psxtmtests/configure.ac | 3 + .../psxtmtests/psxtmclocknanosleep01/Makefile.am | 25 +++++ testsuites/psxtmtests/psxtmclocknanosleep01/init.c | 59 +++++++++++ .../psxtmclocknanosleep01.doc | 12 +++ .../psxtmtests/psxtmclocknanosleep02/Makefile.am | 25 +++++ testsuites/psxtmtests/psxtmclocknanosleep02/init.c | 109 ++++++++++++++++++++ .../psxtmclocknanosleep02.doc | 10 ++ .../psxtmtests/psxtmclocknanosleep03/Makefile.am | 25 +++++ testsuites/psxtmtests/psxtmclocknanosleep03/init.c | 114 +++++++++++++++++++++ .../psxtmclocknanosleep03.doc | 10 ++ 11 files changed, 395 insertions(+) create mode 100644 testsuites/psxtmtests/psxtmclocknanosleep01/Makefile.am create mode 100644 testsuites/psxtmtests/psxtmclocknanosleep01/init.c create mode 100644 testsuites/psxtmtests/psxtmclocknanosleep01/psxtmclocknanosleep01.doc create mode 100644 testsuites/psxtmtests/psxtmclocknanosleep02/Makefile.am create mode 100644 testsuites/psxtmtests/psxtmclocknanosleep02/init.c create mode 100644 testsuites/psxtmtests/psxtmclocknanosleep02/psxtmclocknanosleep02.doc create mode 100644 testsuites/psxtmtests/psxtmclocknanosleep03/Makefile.am create mode 100644 testsuites/psxtmtests/psxtmclocknanosleep03/init.c create mode 100644 testsuites/psxtmtests/psxtmclocknanosleep03/psxtmclocknanosleep03.doc (limited to 'testsuites/psxtmtests') diff --git a/testsuites/psxtmtests/Makefile.am b/testsuites/psxtmtests/Makefile.am index c4276a4c79..e7e079aff8 100644 --- a/testsuites/psxtmtests/Makefile.am +++ b/testsuites/psxtmtests/Makefile.am @@ -7,6 +7,9 @@ SUBDIRS += psxtmbarrier01 SUBDIRS += psxtmbarrier02 SUBDIRS += psxtmbarrier03 SUBDIRS += psxtmbarrier04 +SUBDIRS += psxtmclocknanosleep01 +SUBDIRS += psxtmclocknanosleep02 +SUBDIRS += psxtmclocknanosleep03 SUBDIRS += psxtmcond01 SUBDIRS += psxtmcond02 SUBDIRS += psxtmcond03 diff --git a/testsuites/psxtmtests/configure.ac b/testsuites/psxtmtests/configure.ac index 13cf945cd6..b3ab540951 100644 --- a/testsuites/psxtmtests/configure.ac +++ b/testsuites/psxtmtests/configure.ac @@ -81,6 +81,9 @@ psxtmbarrier01/Makefile psxtmbarrier02/Makefile psxtmbarrier03/Makefile psxtmbarrier04/Makefile +psxtmclocknanosleep01/Makefile +psxtmclocknanosleep02/Makefile +psxtmclocknanosleep03/Makefile psxtmcond01/Makefile psxtmcond02/Makefile psxtmcond03/Makefile diff --git a/testsuites/psxtmtests/psxtmclocknanosleep01/Makefile.am b/testsuites/psxtmtests/psxtmclocknanosleep01/Makefile.am new file mode 100644 index 0000000000..2476b6b960 --- /dev/null +++ b/testsuites/psxtmtests/psxtmclocknanosleep01/Makefile.am @@ -0,0 +1,25 @@ + +rtems_tests_PROGRAMS = psxtmclocknanosleep01 +psxtmclocknanosleep01_SOURCES = init.c ../../tmtests/include/timesys.h \ + ../../support/src/tmtests_empty_function.c \ + ../../support/src/tmtests_support.c + +dist_rtems_tests_DATA = psxtmclocknanosleep01.doc + +include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg +include $(top_srcdir)/../automake/compile.am +include $(top_srcdir)/../automake/leaf.am + +OPERATION_COUNT = @OPERATION_COUNT@ +AM_CPPFLAGS += -I$(top_srcdir)/../tmtests/include +AM_CPPFLAGS += -DOPERATION_COUNT=$(OPERATION_COUNT) +AM_CPPFLAGS += -I$(top_srcdir)/../support/include + +LINK_OBJS = $(psxtmclocknanosleep01_OBJECTS) +LINK_LIBS = $(psxtmclocknanosleep01_LDLIBS) + +psxtmclocknanosleep01$(EXEEXT): $(psxtmclocknanosleep01_OBJECTS) $(psxtmclocknanosleep01_DEPENDENCIES) + @rm -f psxtmclocknanosleep01$(EXEEXT) + $(make-exe) + +include $(top_srcdir)/../automake/local.am diff --git a/testsuites/psxtmtests/psxtmclocknanosleep01/init.c b/testsuites/psxtmtests/psxtmclocknanosleep01/init.c new file mode 100644 index 0000000000..86c1f5f8b6 --- /dev/null +++ b/testsuites/psxtmtests/psxtmclocknanosleep01/init.c @@ -0,0 +1,59 @@ +/* + * COPYRIGHT (c) 1989-2013. + * On-Line Applications Research Corporation (OAR). + * + * Copyright (c) 2016. Gedare Bloom. + * + * The license and distribution terms for this file may be + * found in the file LICENSE in this distribution or at + * http://www.rtems.org/license/LICENSE. + */ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include +#include +#include "test_support.h" + +const char rtems_test_name[] = "PSXTMCLOCKNANOSLEEP 01"; + +/* forward declarations to avoid warnings */ +void *POSIX_Init(void *argument); + +void *POSIX_Init( + void *argument +) +{ + benchmark_timer_t end_time; + struct timespec sleepTime; + + sleepTime.tv_sec = 0; + sleepTime.tv_nsec = 0; + + TEST_BEGIN(); + + benchmark_timer_initialize(); + clock_nanosleep( CLOCK_REALTIME, 0, &sleepTime, (struct timespec *) NULL ); + end_time = benchmark_timer_read(); + + put_time( "nanosleep: yield", end_time, 1, 0, 0 ); + + TEST_END(); + + rtems_test_exit(0); +} + +/* configuration information */ + +#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER +#define CONFIGURE_APPLICATION_NEEDS_TIMER_DRIVER + +#define CONFIGURE_MAXIMUM_POSIX_THREADS 1 +#define CONFIGURE_POSIX_INIT_THREAD_TABLE + +#define CONFIGURE_INIT + +#include +/* end of file */ diff --git a/testsuites/psxtmtests/psxtmclocknanosleep01/psxtmclocknanosleep01.doc b/testsuites/psxtmtests/psxtmclocknanosleep01/psxtmclocknanosleep01.doc new file mode 100644 index 0000000000..67370cfa36 --- /dev/null +++ b/testsuites/psxtmtests/psxtmclocknanosleep01/psxtmclocknanosleep01.doc @@ -0,0 +1,12 @@ +# Copyright 2016. Gedare Bloom. +# +# The license and distribution terms for this file may be +# found in the file LICENSE in this distribution or at +# http://www.rtems.org/license/LICENSE. +# + +This test benchmarks the following operations: + ++ Benchmark a call to clock_nanosleep() which yields + + diff --git a/testsuites/psxtmtests/psxtmclocknanosleep02/Makefile.am b/testsuites/psxtmtests/psxtmclocknanosleep02/Makefile.am new file mode 100644 index 0000000000..6e651ebb73 --- /dev/null +++ b/testsuites/psxtmtests/psxtmclocknanosleep02/Makefile.am @@ -0,0 +1,25 @@ + +rtems_tests_PROGRAMS = psxtmclocknanosleep02 +psxtmclocknanosleep02_SOURCES = init.c ../../tmtests/include/timesys.h \ + ../../support/src/tmtests_empty_function.c \ + ../../support/src/tmtests_support.c + +dist_rtems_tests_DATA = psxtmclocknanosleep02.doc + +include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg +include $(top_srcdir)/../automake/compile.am +include $(top_srcdir)/../automake/leaf.am + +OPERATION_COUNT = @OPERATION_COUNT@ +AM_CPPFLAGS += -I$(top_srcdir)/../tmtests/include +AM_CPPFLAGS += -DOPERATION_COUNT=$(OPERATION_COUNT) +AM_CPPFLAGS += -I$(top_srcdir)/../support/include + +LINK_OBJS = $(psxtmclocknanosleep02_OBJECTS) +LINK_LIBS = $(psxtmclocknanosleep02_LDLIBS) + +psxtmclocknanosleep02$(EXEEXT): $(psxtmclocknanosleep02_OBJECTS) $(psxtmclocknanosleep02_DEPENDENCIES) + @rm -f psxtmclocknanosleep02$(EXEEXT) + $(make-exe) + +include $(top_srcdir)/../automake/local.am diff --git a/testsuites/psxtmtests/psxtmclocknanosleep02/init.c b/testsuites/psxtmtests/psxtmclocknanosleep02/init.c new file mode 100644 index 0000000000..b35a82b94f --- /dev/null +++ b/testsuites/psxtmtests/psxtmclocknanosleep02/init.c @@ -0,0 +1,109 @@ +/* + * COPYRIGHT (c) 1989-2013. + * On-Line Applications Research Corporation (OAR). + * + * Copyright (c) 2016. Gedare Bloom. + * + * The license and distribution terms for this file may be + * found in the file LICENSE in this distribution or at + * http://www.rtems.org/license/LICENSE. + */ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include +#include +#include "test_support.h" + +#include + +const char rtems_test_name[] = "PSXTMCLOCKNANOSLEEP 02"; + +/* forward declarations to avoid warnings */ +void *POSIX_Init(void *argument); +void *Middle(void *argument); +void *Low(void *argument); + +void *Low( + void *argument +) +{ + benchmark_timer_t end_time; + + end_time = benchmark_timer_read(); + + put_time( + "clock_nanosleep: blocking", + end_time, + OPERATION_COUNT, + 0, + 0 + ); + + TEST_END(); + + rtems_test_exit( 0 ); + return NULL; +} + +void *Middle( + void *argument +) +{ + /* calling nanosleep */ + struct timespec sleepTime; + sleepTime.tv_sec = 0; + sleepTime.tv_nsec = 1; + + clock_nanosleep(CLOCK_REALTIME, 0, &sleepTime, (struct timespec *) NULL); + + return NULL; +} + +void *POSIX_Init( + void *argument +) +{ + int i; + int status; + pthread_t threadId; + struct timespec sleepTime; + struct timespec remainder; + + sleepTime.tv_sec = 0; + sleepTime.tv_nsec = 1; + remainder.tv_sec = 0; + remainder.tv_nsec = 0; + + TEST_BEGIN(); + + for ( i=0 ; i < OPERATION_COUNT - 1 ; i++ ) { + status = pthread_create( &threadId, NULL, Middle, NULL ); + rtems_test_assert( !status ); + } + + status = pthread_create( &threadId, NULL, Low, NULL ); + rtems_test_assert( !status ); + + /* start the timer and switch through all the other tasks */ + benchmark_timer_initialize(); + /* calling clock_nanosleep*/ + clock_nanosleep(CLOCK_REALTIME, 0, &sleepTime, &remainder); + + return NULL; +} + +/* configuration information */ + +#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER +#define CONFIGURE_APPLICATION_NEEDS_TIMER_DRIVER + +#define CONFIGURE_MAXIMUM_POSIX_THREADS OPERATION_COUNT + 2 +#define CONFIGURE_POSIX_INIT_THREAD_TABLE + +#define CONFIGURE_INIT + +#include + /* end of file */ diff --git a/testsuites/psxtmtests/psxtmclocknanosleep02/psxtmclocknanosleep02.doc b/testsuites/psxtmtests/psxtmclocknanosleep02/psxtmclocknanosleep02.doc new file mode 100644 index 0000000000..4724ae50f3 --- /dev/null +++ b/testsuites/psxtmtests/psxtmclocknanosleep02/psxtmclocknanosleep02.doc @@ -0,0 +1,10 @@ +# Copyright (c) 2016. Gedare Bloom +# +# The license and distribution terms for this file may be +# found in the file LICENSE in this distribution or at +# http://www.rtems.org/license/LICENSE. +# + +This test benchmarks the following operations: + ++ clock_nanosleep - blocking diff --git a/testsuites/psxtmtests/psxtmclocknanosleep03/Makefile.am b/testsuites/psxtmtests/psxtmclocknanosleep03/Makefile.am new file mode 100644 index 0000000000..1c8fb55429 --- /dev/null +++ b/testsuites/psxtmtests/psxtmclocknanosleep03/Makefile.am @@ -0,0 +1,25 @@ + +rtems_tests_PROGRAMS = psxtmclocknanosleep03 +psxtmclocknanosleep03_SOURCES = init.c ../../tmtests/include/timesys.h \ + ../../support/src/tmtests_empty_function.c \ + ../../support/src/tmtests_support.c + +dist_rtems_tests_DATA = psxtmclocknanosleep03.doc + +include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg +include $(top_srcdir)/../automake/compile.am +include $(top_srcdir)/../automake/leaf.am + +OPERATION_COUNT = @OPERATION_COUNT@ +AM_CPPFLAGS += -I$(top_srcdir)/../tmtests/include +AM_CPPFLAGS += -DOPERATION_COUNT=$(OPERATION_COUNT) +AM_CPPFLAGS += -I$(top_srcdir)/../support/include + +LINK_OBJS = $(psxtmclocknanosleep03_OBJECTS) +LINK_LIBS = $(psxtmclocknanosleep03_LDLIBS) + +psxtmclocknanosleep03$(EXEEXT): $(psxtmclocknanosleep03_OBJECTS) $(psxtmclocknanosleep03_DEPENDENCIES) + @rm -f psxtmclocknanosleep03$(EXEEXT) + $(make-exe) + +include $(top_srcdir)/../automake/local.am diff --git a/testsuites/psxtmtests/psxtmclocknanosleep03/init.c b/testsuites/psxtmtests/psxtmclocknanosleep03/init.c new file mode 100644 index 0000000000..ccceada787 --- /dev/null +++ b/testsuites/psxtmtests/psxtmclocknanosleep03/init.c @@ -0,0 +1,114 @@ +/* + * COPYRIGHT (c) 1989-2013. + * On-Line Applications Research Corporation (OAR). + * + * Copyright (c) 2016. Gedare Bloom. + * + * The license and distribution terms for this file may be + * found in the file LICENSE in this distribution or at + * http://www.rtems.org/license/LICENSE. + */ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include +#include +#include "test_support.h" + +#include + +const char rtems_test_name[] = "PSXTMCLOCKNANOSLEEP 03"; + +/* forward declarations to avoid warnings */ +void *POSIX_Init(void *argument); +void *Middle(void *argument); +void *Low(void *argument); + +void *Low( + void *argument +) +{ + benchmark_timer_t end_time; + + end_time = benchmark_timer_read(); + + put_time( + "clock_nanosleep: blocking", + end_time, + OPERATION_COUNT, + 0, + 0 + ); + + TEST_END(); + + rtems_test_exit( 0 ); + return NULL; +} + +void *Middle( + void *argument +) +{ + /* calling nanosleep */ + struct timespec sleepTime; + sleepTime.tv_sec = 0; + sleepTime.tv_nsec = 1; + + clock_nanosleep( + CLOCK_REALTIME, + TIMER_ABSTIME, + &sleepTime, + (struct timespec *) NULL + ); + + return NULL; +} + +void *POSIX_Init( + void *argument +) +{ + int i; + int status; + pthread_t threadId; + struct timespec sleepTime; + struct timespec remainder; + + sleepTime.tv_sec = 0; + sleepTime.tv_nsec = 1; + remainder.tv_sec = 0; + remainder.tv_nsec = 0; + + TEST_BEGIN(); + + for ( i=0 ; i < OPERATION_COUNT - 1 ; i++ ) { + status = pthread_create( &threadId, NULL, Middle, NULL ); + rtems_test_assert( !status ); + } + + status = pthread_create( &threadId, NULL, Low, NULL ); + rtems_test_assert( !status ); + + /* start the timer and switch through all the other tasks */ + benchmark_timer_initialize(); + /* calling clock_nanosleep*/ + clock_nanosleep(CLOCK_REALTIME, TIMER_ABSTIME, &sleepTime, &remainder); + + return NULL; +} + +/* configuration information */ + +#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER +#define CONFIGURE_APPLICATION_NEEDS_TIMER_DRIVER + +#define CONFIGURE_MAXIMUM_POSIX_THREADS OPERATION_COUNT + 2 +#define CONFIGURE_POSIX_INIT_THREAD_TABLE + +#define CONFIGURE_INIT + +#include + /* end of file */ diff --git a/testsuites/psxtmtests/psxtmclocknanosleep03/psxtmclocknanosleep03.doc b/testsuites/psxtmtests/psxtmclocknanosleep03/psxtmclocknanosleep03.doc new file mode 100644 index 0000000000..8ea20f6efd --- /dev/null +++ b/testsuites/psxtmtests/psxtmclocknanosleep03/psxtmclocknanosleep03.doc @@ -0,0 +1,10 @@ +# Copyright (c) 2016. Gedare Bloom +# +# The license and distribution terms for this file may be +# found in the file LICENSE in this distribution or at +# http://www.rtems.org/license/LICENSE. +# + +This test benchmarks the following operations: + ++ clock_nanosleep - blocking with TIMER_ABSTIME -- cgit v1.2.3