summaryrefslogtreecommitdiffstats
path: root/testsuites
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2017-10-29 20:29:05 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2017-11-02 14:08:32 +0100
commit3e81d52e27ea030fc93580c610c40616ab2b0559 (patch)
tree5fe2bbc0217d90328a9c6d8ad43fb9bb3cbb0ddf /testsuites
parenttests: Use printf() instead of fprintf() (diff)
downloadrtems-3e81d52e27ea030fc93580c610c40616ab2b0559.tar.bz2
posix: Use far future for very long timeouts
Close #3205.
Diffstat (limited to 'testsuites')
-rw-r--r--testsuites/psxtests/psxclock/init.c59
1 files changed, 52 insertions, 7 deletions
diff --git a/testsuites/psxtests/psxclock/init.c b/testsuites/psxtests/psxclock/init.c
index 669f4bb0c4..1e7dae7bde 100644
--- a/testsuites/psxtests/psxclock/init.c
+++ b/testsuites/psxtests/psxclock/init.c
@@ -13,19 +13,17 @@
#include <time.h>
#include <errno.h>
+#include <stdint.h>
#include "pmacros.h"
#include "pritime.h"
+#include <rtems.h>
#include <rtems/score/todimpl.h>
const char rtems_test_name[] = "PSXCLOCK";
-/* forward declarations to avoid warnings */
-rtems_task Init(rtems_task_argument argument);
-void check_enosys(int status);
-
-void check_enosys(int status)
+static void check_enosys(int status)
{
if ( (status == -1) && (errno == ENOSYS) )
return;
@@ -33,7 +31,52 @@ void check_enosys(int status)
rtems_test_exit(0);
}
-rtems_task Init(
+typedef struct {
+ int counter;
+ struct timespec delta;
+} nanosleep_contex;
+
+static void task_nanosleep( rtems_task_argument arg )
+{
+ nanosleep_contex *ctx;
+
+ ctx = (nanosleep_contex *) arg;
+ ++ctx->counter;
+ nanosleep( &ctx->delta, NULL );
+}
+
+static void test_far_future_nanosleep( void )
+{
+ rtems_status_code sc;
+ rtems_id id;
+ nanosleep_contex ctx;
+
+ sc = rtems_task_create(
+ rtems_build_name( 'N', 'A', 'N', 'O' ),
+ 1,
+ RTEMS_MINIMUM_STACK_SIZE,
+ RTEMS_DEFAULT_MODES,
+ RTEMS_DEFAULT_ATTRIBUTES,
+ &id
+ );
+ rtems_test_assert( sc == RTEMS_SUCCESSFUL );
+
+ ctx.counter = 0;
+ ctx.delta.tv_sec = INT64_MAX;
+ ctx.delta.tv_nsec = 999999999;
+ sc = rtems_task_start( id, task_nanosleep, (rtems_task_argument) &ctx );
+ rtems_test_assert( sc == RTEMS_SUCCESSFUL );
+
+ sc = rtems_task_wake_after( RTEMS_YIELD_PROCESSOR );
+ rtems_test_assert( sc == RTEMS_SUCCESSFUL );
+
+ rtems_test_assert( ctx.counter == 1 );
+
+ sc = rtems_task_delete( id );
+ rtems_test_assert( sc == RTEMS_SUCCESSFUL );
+}
+
+static rtems_task Init(
rtems_task_argument argument
)
{
@@ -140,6 +183,8 @@ rtems_task Init(
printf( "Init: seconds remaining (%d)\n", (int)remaining );
rtems_test_assert( !remaining );
+ test_far_future_nanosleep();
+
/* error cases in nanosleep */
empty_line();
@@ -267,7 +312,7 @@ rtems_task Init(
#define CONFIGURE_INITIAL_EXTENSIONS RTEMS_TEST_INITIAL_EXTENSION
#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
-#define CONFIGURE_MAXIMUM_TASKS 1
+#define CONFIGURE_MAXIMUM_TASKS 2
#define CONFIGURE_INIT
#include <rtems/confdefs.h>