summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxualarm
diff options
context:
space:
mode:
authorJennifer Averett <Jennifer.Averett@OARcorp.com>2007-12-20 18:19:15 +0000
committerJennifer Averett <Jennifer.Averett@OARcorp.com>2007-12-20 18:19:15 +0000
commitc3a8293b75d1750006d7bf0700481d9268af2564 (patch)
tree3697a442370ad7f84889f8848d94d939682cfc70 /testsuites/psxtests/psxualarm
parent2007-12-20 Jennifer Averett <jennifer.averett@OARcorp.com> (diff)
downloadrtems-c3a8293b75d1750006d7bf0700481d9268af2564.tar.bz2
2007-12-20 Jennifer Averett <jennifer.averett@OARcorp.com>
* Makefile.am, configure.ac: Added test for ualarm * psxualarm/Makefile.am, psxualarm/init.c, psxualarm/psxualarm.scn, psxualarm/system.h: New files.
Diffstat (limited to 'testsuites/psxtests/psxualarm')
-rw-r--r--testsuites/psxtests/psxualarm/Makefile.am28
-rw-r--r--testsuites/psxtests/psxualarm/init.c106
-rw-r--r--testsuites/psxtests/psxualarm/psxualarm.scn8
-rw-r--r--testsuites/psxtests/psxualarm/system.h68
4 files changed, 210 insertions, 0 deletions
diff --git a/testsuites/psxtests/psxualarm/Makefile.am b/testsuites/psxtests/psxualarm/Makefile.am
new file mode 100644
index 0000000000..302dc621f7
--- /dev/null
+++ b/testsuites/psxtests/psxualarm/Makefile.am
@@ -0,0 +1,28 @@
+##
+## $Id$
+##
+
+MANAGERS = all
+
+rtems_tests_PROGRAMS = psxualarm.exe
+psxualarm_exe_SOURCES = init.c system.h ../include/pmacros.h
+
+dist_rtems_tests_DATA = psxualarm.scn
+
+include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
+include $(top_srcdir)/../automake/compile.am
+include $(top_srcdir)/../automake/leaf.am
+
+psxualarm_exe_LDADD = $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel)
+
+AM_CPPFLAGS += -I$(top_srcdir)/include
+AM_CPPFLAGS += -I$(top_srcdir)/../support/include
+
+LINK_OBJS = $(psxualarm_exe_OBJECTS) $(psxualarm_exe_LDADD)
+LINK_LIBS = $(psxulaarm_exe_LDLIBS)
+
+psxualarm.exe$(EXEEXT): $(psxualarm_exe_OBJECTS) $(psxualarm_exe_DEPENDENCIES)
+ @rm -f psxualarm.exe$(EXEEXT)
+ $(make-exe)
+
+include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/psxtests/psxualarm/init.c b/testsuites/psxtests/psxualarm/init.c
new file mode 100644
index 0000000000..0a8461bff0
--- /dev/null
+++ b/testsuites/psxtests/psxualarm/init.c
@@ -0,0 +1,106 @@
+/*
+ * COPYRIGHT (c) 1989-1999.
+ * On-Line Applications Research Corporation (OAR).
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.com/license/LICENSE.
+ *
+ * $Id$
+ */
+
+#define CONFIGURE_INIT
+#include "system.h"
+#include <signal.h>
+#include <unistd.h>
+#include <errno.h>
+typedef void (*sighandler_t)(int);
+sighandler_t signal(int signum, sighandler_t handler);
+extern void _POSIX_signals_Abnormal_termination_handler( int signo );
+
+volatile int Signal_occurred;
+volatile int Signal_count;
+
+void Signal_handler(
+ int signo
+)
+{
+ Signal_count++;
+ printf(
+ "Signal: %d caught by 0x%x (%d)\n",
+ signo,
+ pthread_self(),
+ Signal_count
+ );
+ Signal_occurred = 1;
+}
+
+rtems_timer_service_routine Signal_duringISR_TSR(
+ rtems_id ignored_id,
+ void *ignored_address
+)
+{
+ int status;
+ status = kill( getpid(), SIGUSR1 );
+}
+
+
+void *POSIX_Init(
+ void *argument
+)
+{
+ int status;
+ useconds_t result;
+ struct sigaction act;
+ sigset_t mask;
+ sigset_t pending_set;
+ sigset_t oset;
+ struct timespec timeout;
+ siginfo_t info;
+ sighandler_t oldHandler;
+ sighandler_t newHandler;
+ rtems_interval start, end;
+
+ puts( "\n\n*** POSIX TEST UALARM ***" );
+
+ /* set the time of day, and print our buffer in multiple ways */
+
+ set_time( TM_FRIDAY, TM_MAY, 24, 96, 11, 5, 0 );
+
+ /* get id of this thread */
+
+ Init_id = pthread_self();
+ printf( "Init's ID is 0x%08x\n", Init_id );
+
+ Signal_occurred = 0;
+ Signal_count = 0;
+
+ /* Validate ualarm is ignored if signal not caught */
+ act.sa_handler = Signal_handler;
+ act.sa_flags = 0;
+ sigaction( SIGALRM, &act, NULL );
+ puts( "Init: ualarm in 1 us" );
+ sleep(3);
+ result = ualarm(1,0);
+ status = sleep(10);
+
+ /* unblock Signal and see if it happened */
+ status = sigemptyset( &mask );
+ assert( !status );
+ status = sigaddset( &mask, SIGALRM );
+ assert( !status );
+ puts( "Init: Unblock SIGALRM" );
+ status = sigprocmask( SIG_UNBLOCK, &mask, NULL );
+ assert( !status );
+ status = sleep(10);
+
+ /* stop ularm */
+ puts( "Init: clear ualarm with 0,0" );
+ result = ualarm(0,0);
+ status = sleep(10);
+
+ puts( "*** END OF POSIX TEST UALARM ***" );
+ rtems_test_exit(0);
+
+ return NULL; /* just so the compiler thinks we returned something */
+}
diff --git a/testsuites/psxtests/psxualarm/psxualarm.scn b/testsuites/psxtests/psxualarm/psxualarm.scn
new file mode 100644
index 0000000000..eca799a438
--- /dev/null
+++ b/testsuites/psxtests/psxualarm/psxualarm.scn
@@ -0,0 +1,8 @@
+*** POSIX TEST UALARM ***
+Init's ID is 0x0b010001
+Init: ualarm in 1 us
+Init: Unblock SIGALRM
+Signal: 14 caught by 0xb010001 (1)
+Signal: 14 caught by 0xb010001 (2)
+Init: clear ualarm with 0,0
+*** END OF POSIX TEST UALARM ***
diff --git a/testsuites/psxtests/psxualarm/system.h b/testsuites/psxtests/psxualarm/system.h
new file mode 100644
index 0000000000..9499e12f23
--- /dev/null
+++ b/testsuites/psxtests/psxualarm/system.h
@@ -0,0 +1,68 @@
+/* system.h
+ *
+ * This include file contains information that is included in every
+ * function in the test set.
+ *
+ * COPYRIGHT (c) 1989-1999.
+ * On-Line Applications Research Corporation (OAR).
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.com/license/LICENSE.
+ *
+ * $Id$
+ */
+
+/* functions */
+
+#include <pmacros.h>
+
+void *POSIX_Init(
+ void *argument
+);
+
+void *Task_1(
+ void *argument
+);
+
+void *Task_2(
+ void *argument
+);
+
+void *Task_3(
+ void *argument
+);
+
+
+/* configuration information */
+
+#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
+#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
+
+#define CONFIGURE_MAXIMUM_POSIX_THREADS 4
+#define CONFIGURE_MAXIMUM_POSIX_QUEUED_SIGNALS 5
+
+#define CONFIGURE_POSIX_INIT_THREAD_TABLE
+#define CONFIGURE_POSIX_INIT_THREAD_STACK_SIZE \
+ (RTEMS_MINIMUM_STACK_SIZE * 4)
+
+#define CONFIGURE_MAXIMUM_TIMERS 1
+
+#include <rtems/confdefs.h>
+
+/* global variables */
+
+#ifdef CONFIGURE_INIT
+#define TEST_EXTERN
+#else
+#define TEST_EXTERN extern
+#endif
+TEST_EXTERN rtems_id Timer_id[ 1 ]; /* array of timer ids */
+TEST_EXTERN rtems_name Timer_name[ 1 ]; /* array of timer names */
+
+TEST_EXTERN pthread_t Init_id;
+TEST_EXTERN pthread_t Task1_id;
+TEST_EXTERN pthread_t Task2_id;
+TEST_EXTERN pthread_t Task3_id;
+
+/* end of include file */