change log for rtems (2011-07-15)

rtems-vc at rtems.org rtems-vc at rtems.org
Fri Jul 15 20:10:18 UTC 2011


 *joel*:
2011-07-15	Ricardo Aguirre <el.mastin at ymail.com>

	PR 1835/tests
	* Makefile.am, configure.ac, psxtmtests_plan.csv: Add benchmark of
	mutex set and get priority ceiling.
	* psxtmmutex07/.cvsignore, psxtmmutex07/Makefile.am,
	psxtmmutex07/init.c, psxtmmutex07/psxtmmutex07.doc: New files.

M   1.19  testsuites/psxtmtests/ChangeLog
M    1.7  testsuites/psxtmtests/Makefile.am
M    1.9  testsuites/psxtmtests/configure.ac
A    1.1  testsuites/psxtmtests/psxtmmutex07/.cvsignore
A    1.1  testsuites/psxtmtests/psxtmmutex07/Makefile.am
A    1.1  testsuites/psxtmtests/psxtmmutex07/init.c
A    1.1  testsuites/psxtmtests/psxtmmutex07/psxtmmutex07.doc
M   1.11  testsuites/psxtmtests/psxtmtests_plan.csv

diff -u rtems/testsuites/psxtmtests/ChangeLog:1.18 rtems/testsuites/psxtmtests/ChangeLog:1.19
--- rtems/testsuites/psxtmtests/ChangeLog:1.18	Wed Jul 13 10:35:40 2011
+++ rtems/testsuites/psxtmtests/ChangeLog	Fri Jul 15 14:33:48 2011
@@ -1,3 +1,11 @@
+2011-07-15	Ricardo Aguirre <el.mastin at ymail.com>
+
+	PR 1835/tests
+	* Makefile.am, configure.ac, psxtmtests_plan.csv: Add benchmark of
+	mutex set and get priority ceiling.
+	* psxtmmutex07/.cvsignore, psxtmmutex07/Makefile.am,
+	psxtmmutex07/init.c, psxtmmutex07/psxtmmutex07.doc: New files.
+
 2011-07-13	Joel Sherrill <joel.sherrill at oarcorp.com>
 
 	* psxtmtests_plan.csv: Update to reflect next activities.

diff -u rtems/testsuites/psxtmtests/Makefile.am:1.6 rtems/testsuites/psxtmtests/Makefile.am:1.7
--- rtems/testsuites/psxtmtests/Makefile.am:1.6	Wed Jul 13 10:23:25 2011
+++ rtems/testsuites/psxtmtests/Makefile.am	Fri Jul 15 14:33:48 2011
@@ -10,6 +10,7 @@
 SUBDIRS += psxtmmutex01
 SUBDIRS += psxtmmutex02
 SUBDIRS += psxtmmutex03
+SUBDIRS += psxtmmutex07
 SUBDIRS += psxtmnanosleep01
 SUBDIRS += psxtmnanosleep02
 SUBDIRS += psxtmsleep01

diff -u rtems/testsuites/psxtmtests/configure.ac:1.8 rtems/testsuites/psxtmtests/configure.ac:1.9
--- rtems/testsuites/psxtmtests/configure.ac:1.8	Wed Jul 13 10:23:25 2011
+++ rtems/testsuites/psxtmtests/configure.ac	Fri Jul 15 14:33:48 2011
@@ -82,6 +82,8 @@
 psxtmmutex01/Makefile
 psxtmmutex02/Makefile
 psxtmmutex03/Makefile
+psxtmmutex04/Makefile
+psxtmmutex07/Makefile
 psxtmnanosleep01/Makefile
 psxtmnanosleep02/Makefile
 psxtmsleep01/Makefile

diff -u /dev/null rtems/testsuites/psxtmtests/psxtmmutex07/.cvsignore:1.1
--- /dev/null	Fri Jul 15 15:10:18 2011
+++ rtems/testsuites/psxtmtests/psxtmmutex07/.cvsignore	Fri Jul 15 14:33:48 2011
@@ -0,0 +1,2 @@
+Makefile
+Makefile.in

diff -u /dev/null rtems/testsuites/psxtmtests/psxtmmutex07/Makefile.am:1.1
--- /dev/null	Fri Jul 15 15:10:18 2011
+++ rtems/testsuites/psxtmtests/psxtmmutex07/Makefile.am	Fri Jul 15 14:33:48 2011
@@ -0,0 +1,30 @@
+##
+## $Id$
+##
+
+MANAGERS = all
+
+rtems_tests_PROGRAMS = psxtmmutex07
+psxtmmutex07_SOURCES = init.c ../../tmtests/include/timesys.h \
+    ../../support/src/tmtests_empty_function.c \
+    ../../support/src/tmtests_support.c
+
+dist_rtems_tests_DATA = psxtmmutex07.doc
+
+include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP at .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 = $(psxtmmutex07_OBJECTS) $(psxtmmutex07_LDADD)
+LINK_LIBS = $(psxtmmutex07_LDLIBS)
+
+psxtmmutex07$(EXEEXT): $(psxtmmutex07_OBJECTS) $(psxtmmutex07_DEPENDENCIES)
+	@rm -f psxtmmutex07$(EXEEXT)
+	$(make-exe)
+
+include $(top_srcdir)/../automake/local.am

diff -u /dev/null rtems/testsuites/psxtmtests/psxtmmutex07/init.c:1.1
--- /dev/null	Fri Jul 15 15:10:18 2011
+++ rtems/testsuites/psxtmtests/psxtmmutex07/init.c	Fri Jul 15 14:33:48 2011
@@ -0,0 +1,101 @@
+/*
+ *  COPYRIGHT (c) 1989-2011.
+ *  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$
+ */
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include <timesys.h>
+#include <rtems/timerdrv.h>
+#include <errno.h>
+#include <pthread.h>
+#include "test_support.h"
+
+pthread_mutex_t MutexId;
+
+void test_mutex_setprioceiling(void)
+{
+  long end_time;
+  int  status;
+  int  old_ceiling;
+
+  benchmark_timer_initialize();
+    status = pthread_mutex_setprioceiling( &MutexId, 5, &old_ceiling );
+  end_time = benchmark_timer_read();
+  rtems_test_assert( status == 0 );
+
+  put_time(
+    "pthread_mutex_setprioceiling",
+    end_time,
+    1,        /* Only executed once */
+    0,
+    0
+  );
+}
+
+void test_mutex_getprioceiling(void)
+{
+  long end_time;
+  int  status;
+  int  current_ceiling;
+
+  benchmark_timer_initialize();
+    status = pthread_mutex_getprioceiling( &MutexId, &current_ceiling );
+  end_time = benchmark_timer_read();
+  rtems_test_assert( status == 0 );
+
+  put_time(
+    "pthread_mutex_getprioceiling",
+    end_time,
+    1,        /* Only executed once */
+    0,
+    0
+  );
+}
+
+void *POSIX_Init(
+  void *argument
+)
+{
+  int  status;
+
+  puts( "\n\n*** POSIX TIME TEST PSXTMMUTEX07 ***" );
+  /* create mutex*/
+  status = pthread_mutex_init( &MutexId, NULL );
+  rtems_test_assert( status == 0 );
+
+  test_mutex_getprioceiling();
+  test_mutex_setprioceiling();
+  test_mutex_getprioceiling();
+
+  /* destroy mutex */
+  status = pthread_mutex_destroy( &MutexId );
+  rtems_test_assert( status == 0 );
+  
+  puts( "*** END OF POSIX TIME TEST PSXTMMUTEX07 ***" );
+
+  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_MAXIMUM_POSIX_MUTEXES     1
+#define CONFIGURE_POSIX_INIT_THREAD_TABLE
+
+#define CONFIGURE_INIT
+
+#include <rtems/confdefs.h>
+/* end of file */

diff -u /dev/null rtems/testsuites/psxtmtests/psxtmmutex07/psxtmmutex07.doc:1.1
--- /dev/null	Fri Jul 15 15:10:18 2011
+++ rtems/testsuites/psxtmtests/psxtmmutex07/psxtmmutex07.doc	Fri Jul 15 14:33:48 2011
@@ -0,0 +1,15 @@
+#
+#  $Id$
+#
+#  COPYRIGHT (c) 1989-2011.
+#  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.
+#
+
+This test benchmarks the following operations:
+
++ pthread_mutex_setprioceiling
++ pthread_mutex_getprioceiling

diff -u rtems/testsuites/psxtmtests/psxtmtests_plan.csv:1.10 rtems/testsuites/psxtmtests/psxtmtests_plan.csv:1.11
--- rtems/testsuites/psxtmtests/psxtmtests_plan.csv:1.10	Wed Jul 13 10:35:40 2011
+++ rtems/testsuites/psxtmtests/psxtmtests_plan.csv	Fri Jul 15 14:33:48 2011
@@ -10,8 +10,8 @@
 "pthread_mutex_unlock - thread waiting, preempt","psxtmmutex06","psxtmtest_unblocking_preempt",
 "pthread_mutex_timedlock - available","psxtmmutex03","psxtmtest_single","Yes"
 "pthread_mutex_timedlock - not available, block","psxtmmutex04","psxtmtest_blocking",
-"pthread_mutex_setprioceiling","psxtmmutex07","psxtmtest_single",
-"pthread_mutex_getprioceiling","psxtmmutex07","psxtmtest_single",
+"pthread_mutex_setprioceiling","psxtmmutex07","psxtmtest_single","Yes"
+"pthread_mutex_getprioceiling","psxtmmutex07","psxtmtest_single","Yes"
 ,,,
 "pthread_cond_init",,"psxtmtest_init_destroy",
 "pthread_cond_destroy",,"psxtmtest_init_destroy",



--

Generated by Deluxe Loginfo [http://www.codewiz.org/projects/index.html#loginfo] 2.122 by Bernardo Innocenti <bernie at develer.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.rtems.org/pipermail/vc/attachments/20110715/4cae68ee/attachment-0001.html>


More information about the vc mailing list