From: compudj Date: Tue, 19 Aug 2008 18:27:59 +0000 (+0000) Subject: update test X-Git-Tag: v0.12.20~453 X-Git-Url: http://git.liburcu.org/?a=commitdiff_plain;h=193771dadc60ecb426d922a1347b0d8aafa4730e;p=lttv.git update test git-svn-id: http://ltt.polymtl.ca/svn@3036 04897980-b3bd-0310-b5e0-8ef037075253 --- diff --git a/trunk/tests/kernel/test-wbias-rwlock.c b/trunk/tests/kernel/test-wbias-rwlock.c index de38c7a8..86b77c05 100644 --- a/trunk/tests/kernel/test-wbias-rwlock.c +++ b/trunk/tests/kernel/test-wbias-rwlock.c @@ -614,6 +614,7 @@ static int my_open(struct inode *inode, struct file *file) cycles_calibration_min, cycles_calibration_avg, cycles_calibration_max); + printk("\n"); printk("** Single writer test, no contention **\n"); wbias_rwlock_profile_latency_reset(); @@ -622,6 +623,7 @@ static int my_open(struct inode *inode, struct file *file) BUG_ON(!writer_threads[0]); ssleep(SINGLE_WRITER_TEST_DURATION); kthread_stop(writer_threads[0]); + printk("\n"); wbias_rwlock_profile_latency_print(); @@ -633,6 +635,7 @@ static int my_open(struct inode *inode, struct file *file) BUG_ON(!trylock_writer_threads[0]); ssleep(SINGLE_WRITER_TEST_DURATION); kthread_stop(trylock_writer_threads[0]); + printk("\n"); wbias_rwlock_profile_latency_print(); @@ -643,6 +646,7 @@ static int my_open(struct inode *inode, struct file *file) BUG_ON(!reader_threads[0]); ssleep(SINGLE_READER_TEST_DURATION); kthread_stop(reader_threads[0]); + printk("\n"); wbias_rwlock_profile_latency_print(); @@ -657,6 +661,7 @@ static int my_open(struct inode *inode, struct file *file) ssleep(SINGLE_READER_TEST_DURATION); for (i = 0; i < NR_READERS; i++) kthread_stop(reader_threads[i]); + printk("\n"); wbias_rwlock_profile_latency_print(); @@ -665,7 +670,7 @@ static int my_open(struct inode *inode, struct file *file) perform_test("wbias-rwlock-create", wbias_rwlock_create); ssleep(TEST_DURATION); perform_test("wbias-rwlock-stop", wbias_rwlock_stop); - + printk("\n"); wbias_rwlock_profile_latency_print(); return -EPERM;