2011-08-02 Ricardo Aguirre <el.mastin@ymail.com>

PR 1874/tests
	* Makefile.am, configure.ac, psxtmtests_plan.csv: Add benchmark of
	multiple pthread_rwlock operations that can be done as single shot
	times.
	* psxtmrwlock01/.cvsignore, psxtmrwlock01/Makefile.am,
	psxtmrwlock01/init.c, psxtmrwlock01/psxtmrwlock01.doc: New files.
This commit is contained in:
Joel Sherrill
2011-08-02 13:23:33 +00:00
parent 43ee81c885
commit 8fffe77b52
8 changed files with 329 additions and 9 deletions

View File

@@ -1,3 +1,12 @@
2011-08-02 Ricardo Aguirre <el.mastin@ymail.com>
PR 1874/tests
* Makefile.am, configure.ac, psxtmtests_plan.csv: Add benchmark of
multiple pthread_rwlock operations that can be done as single shot
times.
* psxtmrwlock01/.cvsignore, psxtmrwlock01/Makefile.am,
psxtmrwlock01/init.c, psxtmrwlock01/psxtmrwlock01.doc: New files.
2011-07-29 Ricardo Aguirre <el.mastin@ymail.com>
PR 1863/tests

View File

@@ -21,6 +21,7 @@ SUBDIRS += psxtmmutex06
SUBDIRS += psxtmmutex07
SUBDIRS += psxtmnanosleep01
SUBDIRS += psxtmnanosleep02
SUBDIRS += psxtmrwlock01
SUBDIRS += psxtmsem01
SUBDIRS += psxtmsem02
SUBDIRS += psxtmsem03

View File

@@ -93,6 +93,7 @@ psxtmmutex06/Makefile
psxtmmutex07/Makefile
psxtmnanosleep01/Makefile
psxtmnanosleep02/Makefile
psxtmrwlock01//Makefile
psxtmsem01/Makefile
psxtmsem02/Makefile
psxtmsem03/Makefile

View File

@@ -0,0 +1,2 @@
Makefile
Makefile.in

View File

@@ -0,0 +1,30 @@
##
## $Id$
##
MANAGERS = all
rtems_tests_PROGRAMS = psxtmrwlock01
psxtmrwlock01_SOURCES = init.c ../../tmtests/include/timesys.h \
../../support/src/tmtests_empty_function.c \
../../support/src/tmtests_support.c
dist_rtems_tests_DATA = psxtmrwlock01.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 = $(psxtmrwlock01_OBJECTS) $(psxtmrwlock01_LDADD)
LINK_LIBS = $(psxtmrwlock01_LDLIBS)
psxtmrwlock01$(EXEEXT): $(psxtmrwlock01_OBJECTS) $(psxtmrwlock01_DEPENDENCIES)
@rm -f psxtmrwlock01$(EXEEXT)
$(make-exe)
include $(top_srcdir)/../automake/local.am

View File

@@ -0,0 +1,254 @@
/*
* 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 <errno.h>
#include <timesys.h>
#include <rtems/timerdrv.h>
#include <pthread.h>
#include "test_support.h"
pthread_rwlock_t rwlock;
void benchmark_pthread_rwlock_init(void)
{
long end_time;
int status;
pthread_rwlockattr_t attr;
pthread_rwlockattr_init( &attr );
benchmark_timer_initialize();
status = pthread_rwlock_init( &rwlock, &attr );
end_time = benchmark_timer_read();
rtems_test_assert( status == 0 );
put_time(
"pthread_rwlock_init",
end_time,
1, /* Only executed once */
0,
0
);
}
void benchmark_pthread_rwlock_rdlock(void)
{
long end_time;
int status;
benchmark_timer_initialize();
status = pthread_rwlock_rdlock(&rwlock);
end_time = benchmark_timer_read();
rtems_test_assert( status == 0 );
put_time(
"pthread_rwlock_rdlock - available",
end_time,
1, /* Only executed once */
0,
0
);
}
void benchmark_pthread_rwlock_unlock(bool do_print)
{
long end_time;
int status;
benchmark_timer_initialize();
status = pthread_rwlock_unlock(&rwlock);
end_time = benchmark_timer_read();
if ( status == EPERM )
puts( "The current thread does not own the read-write lock");
else
rtems_test_assert( status == 0 );
if ( do_print ) {
put_time(
"pthread_rwlock_unlock - available",
end_time,
1, /* Only executed once */
0,
0
);
}
}
void benchmark_pthread_rwlock_tryrdlock(void)
{
long end_time;
int status;
benchmark_timer_initialize();
status = pthread_rwlock_tryrdlock(&rwlock);
end_time = benchmark_timer_read();
rtems_test_assert( status == 0 );
put_time(
"pthread_rwlock_tryrdlock - available",
end_time,
1, /* Only executed once */
0,
0
);
}
void benchmark_pthread_rwlock_timedrdlock(void)
{
long end_time;
int status;
benchmark_timer_initialize();
status = pthread_rwlock_timedrdlock(&rwlock, 0);
end_time = benchmark_timer_read();
rtems_test_assert( status == 0 );
put_time(
"pthread_rwlock_timedrdlock - available",
end_time,
1, /* Only executed once */
0,
0
);
}
void benchmark_pthread_rwlock_wrlock(void)
{
long end_time;
int status;
benchmark_timer_initialize();
status = pthread_rwlock_wrlock(&rwlock);
end_time = benchmark_timer_read();
rtems_test_assert( status == 0 );
put_time(
"pthread_rwlock_wrlock - available",
end_time,
1, /* Only executed once */
0,
0
);
}
void benchmark_pthread_rwlock_trywrlock(void)
{
long end_time;
int status;
benchmark_timer_initialize();
status = pthread_rwlock_trywrlock(&rwlock);
end_time = benchmark_timer_read();
rtems_test_assert( status == 0 );
put_time(
"pthread_rwlock_trywrlock - available",
end_time,
1, /* Only executed once */
0,
0
);
}
void benchmark_pthread_rwlock_timedwrlock(void)
{
long end_time;
int status;
benchmark_timer_initialize();
status = pthread_rwlock_timedwrlock(&rwlock,0);
end_time = benchmark_timer_read();
rtems_test_assert( status == 0 );
put_time(
"pthread_rwlock_timedwrlock - available",
end_time,
1, /* Only executed once */
0,
0
);
}
void benchmark_pthread_rwlock_destroy(void)
{
long end_time;
int status;
benchmark_timer_initialize();
status = pthread_rwlock_destroy(&rwlock);
end_time = benchmark_timer_read();
rtems_test_assert( status == 0 );
put_time(
"pthread_rwlock_destroy",
end_time,
1, /* Only executed once */
0,
0
);
}
void *POSIX_Init(
void *argument
)
{
puts( "\n\n*** POSIX TIME PSXTMRWLOCK 01 ***" );
/* initializing rwlock */
benchmark_pthread_rwlock_init();
/* applying a read lock */
benchmark_pthread_rwlock_rdlock();
/* unlocking rwlock */
benchmark_pthread_rwlock_unlock( true );
/* trying to apply a read lock when it is available */
benchmark_pthread_rwlock_tryrdlock();
/* unlocking rwlock */
benchmark_pthread_rwlock_unlock( false );
/* applying a timed read lock */
benchmark_pthread_rwlock_timedrdlock();
/* unlocking rwlock */
benchmark_pthread_rwlock_unlock( false );
/* applying a write lock */
benchmark_pthread_rwlock_wrlock();
/* unlocking rwlock */
benchmark_pthread_rwlock_unlock( false );
/* trying to apply a write lock, when it is available */
benchmark_pthread_rwlock_trywrlock();
/* unlocking rwlock */
benchmark_pthread_rwlock_unlock( false );
/* applying a timed write lock */
benchmark_pthread_rwlock_timedwrlock();
/* unlocking rwlock */
benchmark_pthread_rwlock_unlock( false );
/* destroying rwlock */
benchmark_pthread_rwlock_destroy();
puts( "*** END OF POSIX TIME PSXTMRWLOCK 01 ***" );
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_RWLOCKS 1
#define CONFIGURE_POSIX_INIT_THREAD_TABLE
#define CONFIGURE_INIT
#include <rtems/confdefs.h>
/* end of file */

View File

@@ -0,0 +1,23 @@
#
# $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_rwlock_init
+ pthread_rwlock_rdlock - available
+ pthread_rwlock_unlock
+ pthread_rwlock_tryrdlock - available
+ pthread_rwlock_timedrdlock - available
+ pthread_rwlock_wrlock - available
+ pthread_rwlock_trywrlock - available
+ pthread_rwlock_timedwrlock - available
+ pthread_rwlock_destroy

View File

@@ -63,22 +63,22 @@
"pthread_spin_trylock - not available",,"psxtmtest_single",
"pthread_spin_unlock",,,
,,,
"pthread_rwlock_init",,"psxtmtest_init_destroy",
"pthread_rwlock_destroy",,"psxtmtest_init_destroy",
"pthread_rwlock_rdlock - available",,"psxtmtest_single",
"pthread_rwlock_init","psxtmrwlock01","psxtmtest_init_destroy","Yes"
"pthread_rwlock_destroy","psxtmrwlock01","psxtmtest_init_destroy","Yes"
"pthread_rwlock_rdlock - available","psxtmrwlock01","psxtmtest_single","Yes"
"pthread_rwlock_rdlock - not available, blocks",,"psxtmtest_blocking",
"pthread_rwlock_tryrdlock - available",,"psxtmtest_single",
"pthread_rwlock_tryrdlock - available","psxtmrwlock01","psxtmtest_single","Yes"
"pthread_rwlock_tryrdlock - not available",,"psxtmtest_single",
"pthread_rwlock_timedrdlock - available",,"psxtmtest_single",
"pthread_rwlock_timedrdlock - available","psxtmrwlock01","psxtmtest_single","Yes"
"pthread_rwlock_timedrdlock - not available, blocks",,"psxtmtest_blocking",
"pthread_rwlock_unlock - no threads waiting",,,
"pthread_rwlock_unlock - no threads waiting","psxtmrwlock01","psxtmtest_single","Yes"
"pthread_rwlock_unlock - thread waiting, no preempt",,,
"pthread_rwlock_unlock - thread waiting, preempt",,,
"pthread_rwlock_wrlock - available",,"psxtmtest_single",
"pthread_rwlock_wrlock - available","psxtmrwlock01","psxtmtest_single","Yes"
"pthread_rwlock_wrlock - not available, blocks",,"psxtmtest_blocking",
"pthread_rwlock_trywrlock - available",,"psxtmtest_single",
"pthread_rwlock_trywrlock - available","psxtmrwlock01","psxtmtest_single","Yes"
"pthread_rwlock_trywrlock - not available",,"psxtmtest_single",
"pthread_rwlock_timedwrlock - available",,"psxtmtest_single",
"pthread_rwlock_timedwrlock - available","psxtmrwlock01","psxtmtest_single","Yes"
"pthread_rwlock_timedwrlock - not available, blocks",,"psxtmtest_blocking",
,,,
"mq_open (first open)","psxtmmq01","psxtmtest_init_destroy",
1 Test Case Test Template Implemented
63 pthread_spin_trylock - not available psxtmtest_single
64 pthread_spin_unlock
65
66 pthread_rwlock_init psxtmrwlock01 psxtmtest_init_destroy Yes
67 pthread_rwlock_destroy psxtmrwlock01 psxtmtest_init_destroy Yes
68 pthread_rwlock_rdlock - available psxtmrwlock01 psxtmtest_single Yes
69 pthread_rwlock_rdlock - not available, blocks psxtmtest_blocking
70 pthread_rwlock_tryrdlock - available psxtmrwlock01 psxtmtest_single Yes
71 pthread_rwlock_tryrdlock - not available psxtmtest_single
72 pthread_rwlock_timedrdlock - available psxtmrwlock01 psxtmtest_single Yes
73 pthread_rwlock_timedrdlock - not available, blocks psxtmtest_blocking
74 pthread_rwlock_unlock - no threads waiting psxtmrwlock01 psxtmtest_single Yes
75 pthread_rwlock_unlock - thread waiting, no preempt
76 pthread_rwlock_unlock - thread waiting, preempt
77 pthread_rwlock_wrlock - available psxtmrwlock01 psxtmtest_single Yes
78 pthread_rwlock_wrlock - not available, blocks psxtmtest_blocking
79 pthread_rwlock_trywrlock - available psxtmrwlock01 psxtmtest_single Yes
80 pthread_rwlock_trywrlock - not available psxtmtest_single
81 pthread_rwlock_timedwrlock - available psxtmrwlock01 psxtmtest_single Yes
82 pthread_rwlock_timedwrlock - not available, blocks psxtmtest_blocking
83
84 mq_open (first open) psxtmmq01 psxtmtest_init_destroy