summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxautoinit01
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-07-07 14:30:12 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-07-07 14:30:12 +0000
commit9a845e175b55bc764cf84f11a2cc77aea7234fcb (patch)
tree210c074b6ed2ec277628f425f828121a7aeaf609 /testsuites/psxtests/psxautoinit01
parent2009-07-06 Joel Sherrill <joel.sherrill@OARcorp.com> (diff)
downloadrtems-9a845e175b55bc764cf84f11a2cc77aea7234fcb.tar.bz2
2009-07-07 Joel Sherrill <joel.sherrill@OARcorp.com>
* Makefile.am, configure.ac: Add test of pthread mutex auto intialization. * psxautoinit01/.cvsignore, psxautoinit01/Makefile.am, psxautoinit01/init.c, psxautoinit01/psxautoinit01.scn: New files.
Diffstat (limited to 'testsuites/psxtests/psxautoinit01')
-rw-r--r--testsuites/psxtests/psxautoinit01/.cvsignore2
-rw-r--r--testsuites/psxtests/psxautoinit01/Makefile.am30
-rw-r--r--testsuites/psxtests/psxautoinit01/init.c76
-rw-r--r--testsuites/psxtests/psxautoinit01/psxautoinit01.scn10
4 files changed, 118 insertions, 0 deletions
diff --git a/testsuites/psxtests/psxautoinit01/.cvsignore b/testsuites/psxtests/psxautoinit01/.cvsignore
new file mode 100644
index 0000000000..282522db03
--- /dev/null
+++ b/testsuites/psxtests/psxautoinit01/.cvsignore
@@ -0,0 +1,2 @@
+Makefile
+Makefile.in
diff --git a/testsuites/psxtests/psxautoinit01/Makefile.am b/testsuites/psxtests/psxautoinit01/Makefile.am
new file mode 100644
index 0000000000..169999c157
--- /dev/null
+++ b/testsuites/psxtests/psxautoinit01/Makefile.am
@@ -0,0 +1,30 @@
+##
+## $Id$
+##
+
+MANAGERS = all
+
+rtems_tests_PROGRAMS = psxautoinit01
+psxautoinit01_SOURCES = init.c ../include/pmacros.h
+
+scndir = $(rtems_testsdir)
+dist_scn_DATA = psxautoinit01.scn
+
+include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
+include $(top_srcdir)/../automake/compile.am
+include $(top_srcdir)/../automake/leaf.am
+
+psxautoinit01_LDADD = $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel)
+
+AM_CPPFLAGS += -I$(top_srcdir)/include
+AM_CPPFLAGS += -I$(top_srcdir)/../support/include
+
+LINK_OBJS = $(psxautoinit01_OBJECTS) $(psxautoinit01_LDADD)
+LINK_LIBS = $(psxautoinit01_LDLIBS)
+
+psxautoinit01$(EXEEXT): $(psxautoinit01_OBJECTS) \
+ $(psxautoinit01_DEPENDENCIES)
+ @rm -f psxautoinit01$(EXEEXT)
+ $(make-exe)
+
+include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/psxtests/psxautoinit01/init.c b/testsuites/psxtests/psxautoinit01/init.c
new file mode 100644
index 0000000000..67c28e3456
--- /dev/null
+++ b/testsuites/psxtests/psxautoinit01/init.c
@@ -0,0 +1,76 @@
+/*
+ * COPYRIGHT (c) 1989-2009.
+ * 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$
+ */
+
+#include "tmacros.h"
+#include <pthread.h>
+#include <errno.h>
+
+void *POSIX_Init(
+ void *argument
+)
+{
+ int sc;
+ pthread_mutex_t mutex1;
+ pthread_mutex_t mutex2;
+ int prioceiling;
+
+ puts( "\n\n*** POSIX TEST -- AUTOMATIC INITIALIZAITON 01 ***" );
+
+ /* path using mutex get with interrupts disabled */
+ mutex1 = PTHREAD_MUTEX_INITIALIZER;
+ mutex2 = PTHREAD_MUTEX_INITIALIZER;
+ puts( "Init - pthread_mutex_lock - auto initialize - OK" );
+ sc = pthread_mutex_lock( &mutex1 );
+ fatal_posix_service_status( sc, 0, "mutex lock OK" );
+
+ puts( "Init - pthread_mutex_lock - auto initialize - EINVAL" );
+ sc = pthread_mutex_lock( &mutex2 );
+ fatal_posix_service_status( sc, EINVAL, "mutex lock EINVAL" );
+
+ puts( "Init - pthread_mutex_unlock - OK" );
+ sc = pthread_mutex_unlock( &mutex1 );
+ fatal_posix_service_status( sc, 0, "mutex unlock OK" );
+
+ puts( "Init - pthread_mutex_destroy - OK" );
+ sc = pthread_mutex_destroy( &mutex1 );
+ fatal_posix_service_status( sc, 0, "mutex destroy OK" );
+
+ /* path using mutex get with dispatching disabled */
+ mutex1 = PTHREAD_MUTEX_INITIALIZER;
+ mutex2 = PTHREAD_MUTEX_INITIALIZER;
+ puts( "Init - pthread_mutex_getprioceiling - auto initialize - OK" );
+ sc = pthread_mutex_getprioceiling( &mutex1, &prioceiling );
+ fatal_posix_service_status( sc, 0, "mutex getprioceiling OK" );
+
+ puts( "Init - pthread_mutex_getprioceiling - auto initialize - EINVAL" );
+ sc = pthread_mutex_getprioceiling( &mutex2, &prioceiling );
+ fatal_posix_service_status( sc, EINVAL, "mutex getprioceiling EINVAL" );
+
+ puts( "Init - pthread_mutex_destroy - OK" );
+ sc = pthread_mutex_destroy( &mutex1 );
+ fatal_posix_service_status( sc, 0, "mutex destroy OK" );
+
+ puts( "*** END OF POSIX TEST AUTOMATIC INITIALIZATION 01 ***" );
+ rtems_test_exit( 0 );
+
+ return NULL; /* just so the compiler thinks we returned something */
+}
+
+#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
+#define CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER
+
+#define CONFIGURE_MAXIMUM_POSIX_THREADS 1
+#define CONFIGURE_MAXIMUM_POSIX_MUTEXES 1
+
+#define CONFIGURE_POSIX_INIT_THREAD_TABLE
+
+#define CONFIGURE_INIT
+#include <rtems/confdefs.h>
diff --git a/testsuites/psxtests/psxautoinit01/psxautoinit01.scn b/testsuites/psxtests/psxautoinit01/psxautoinit01.scn
new file mode 100644
index 0000000000..9293acc626
--- /dev/null
+++ b/testsuites/psxtests/psxautoinit01/psxautoinit01.scn
@@ -0,0 +1,10 @@
+*** POSIX TEST -- AUTOMATIC INITIALIZAITON 01 ***
+Init - pthread_mutex_lock - auto initialize - OK
+Init - pthread_mutex_lock - auto initialize - EINVAL
+Init - pthread_mutex_unlock - OK
+Init - pthread_mutex_destroy - OK
+Init - pthread_mutex_getprioceiling - auto initialize - OK
+Init - pthread_mutex_getprioceiling - auto initialize - EINVAL
+Init - pthread_mutex_destroy - OK
+*** END OF POSIX TEST AUTOMATIC INITIALIZATION 01 ***
+