Index: kernel/test/cht/cht1.c
===================================================================
--- kernel/test/cht/cht1.c	(revision e90cfa68438860942f686f82beddadc619e11d9a)
+++ kernel/test/cht/cht1.c	(revision 34c76e2fc56d7e5a4922e24522df3d9d48503150)
@@ -75,5 +75,4 @@
 }
 
-
 static cht_ops_t val_ops = {
 	.hash = val_hash,
@@ -93,5 +92,4 @@
 
 /*-------------------------------------------------------------------*/
-
 
 static const char *do_sanity_test(cht_t *h)
@@ -441,5 +439,4 @@
 	}
 
-
 	/* Remove anything we may have inserted. */
 	for (size_t i = 0; i < work->elem_cnt; ++i) {
@@ -559,5 +556,4 @@
 /*-------------------------------------------------------------------*/
 
-
 const char *test_cht1(void)
 {
Index: kernel/test/smpcall/smpcall1.c
===================================================================
--- kernel/test/smpcall/smpcall1.c	(revision e90cfa68438860942f686f82beddadc619e11d9a)
+++ kernel/test/smpcall/smpcall1.c	(revision 34c76e2fc56d7e5a4922e24522df3d9d48503150)
@@ -48,5 +48,4 @@
 #define EACH_CPU_INC_PER_ITER 2
 
-
 static void inc(void *p)
 {
@@ -60,5 +59,4 @@
 	++*pcall_cnt;
 }
-
 
 static void test_thread(void *p)
Index: kernel/test/synch/rcu1.c
===================================================================
--- kernel/test/synch/rcu1.c	(revision e90cfa68438860942f686f82beddadc619e11d9a)
+++ kernel/test/synch/rcu1.c	(revision 34c76e2fc56d7e5a4922e24522df3d9d48503150)
@@ -40,5 +40,4 @@
 #include <synch/rcu.h>
 
-
 #define MAX_THREADS 32
 
@@ -134,5 +133,4 @@
 }
 
-
 static void join_one(void)
 {
@@ -150,5 +148,4 @@
 /*-------------------------------------------------------------------*/
 
-
 static void nop_reader(void *arg)
 {
@@ -195,6 +192,4 @@
 /*-------------------------------------------------------------------*/
 
-
-
 static void long_reader(void *arg)
 {
@@ -236,5 +231,4 @@
 
 /*-------------------------------------------------------------------*/
-
 
 static atomic_t nop_callbacks_cnt = 0;
@@ -363,5 +357,4 @@
 	size_t start_time;
 } seq_item_t;
-
 
 static errno_t seq_test_result = EOK;
@@ -460,5 +453,4 @@
 	get_seq(0, total_cnt, get_thread_cnt(), read_cnt);
 
-
 	for (size_t i = 0; i < get_thread_cnt(); ++i) {
 		item[i].update_cnt = total_cnt - read_cnt[i];
@@ -496,5 +488,4 @@
 
 /*-------------------------------------------------------------------*/
-
 
 static void reader_unlocked(rcu_item_t *item)
@@ -555,5 +546,4 @@
 	errno_t result;
 } preempt_t;
-
 
 static void preempted_unlocked(rcu_item_t *item)
@@ -607,5 +597,4 @@
 	TPRINTF("}reader_inside_cur\n");
 }
-
 
 static void preempted_reader_cur(void *arg)
@@ -683,5 +672,4 @@
 }
 
-
 static bool do_one_reader_preempt(void (*f)(void *), const char *err)
 {
@@ -772,5 +760,4 @@
 }
 
-
 static bool do_synch(void)
 {
@@ -800,5 +787,4 @@
 	rcu_synchronize();
 	join_one();
-
 
 	if (synch->reader_done) {
@@ -857,5 +843,4 @@
 } stress_t;
 
-
 static void stress_reader(void *arg)
 {
@@ -1006,5 +991,4 @@
 	const char *desc;
 };
-
 
 const char *test_rcu1(void)
Index: kernel/test/synch/workq-test-core.h
===================================================================
--- kernel/test/synch/workq-test-core.h	(revision e90cfa68438860942f686f82beddadc619e11d9a)
+++ kernel/test/synch/workq-test-core.h	(revision 34c76e2fc56d7e5a4922e24522df3d9d48503150)
@@ -36,5 +36,4 @@
 #include <synch/workqueue.h>
 
-
 typedef struct test_work {
 	work_t work_item;
@@ -46,8 +45,6 @@
 static atomic_t call_cnt[WAVES];
 
-
 /* Fwd decl - implement in your actual test file.. */
 static int core_workq_enqueue(work_t *work_item, work_func_t func);
-
 
 static bool new_wave(test_work_t *work)
@@ -62,5 +59,4 @@
 	}
 }
-
 
 static int is_pow2(int num)
@@ -170,5 +166,4 @@
 	    WAVES, COUNT, exp_call_cnt * WAVES);
 
-
 	core_workq_enqueue(&work->work_item, reproduce);
 
@@ -200,5 +195,4 @@
 	}
 
-
 	if (success)
 		return NULL;
Index: kernel/test/synch/workqueue2.c
===================================================================
--- kernel/test/synch/workqueue2.c	(revision e90cfa68438860942f686f82beddadc619e11d9a)
+++ kernel/test/synch/workqueue2.c	(revision 34c76e2fc56d7e5a4922e24522df3d9d48503150)
@@ -32,5 +32,4 @@
 #include <synch/workqueue.h>
 
-
 #define WAVES 10
 #define COUNT_POW 12
@@ -45,5 +44,4 @@
 #include "workq-test-core.h"
 
-
 /*-------------------------------------------------------------------*/
 
@@ -56,5 +54,4 @@
 	TPRINTF("basic_test_work()");
 }
-
 
 static void basic_test(void)
@@ -74,5 +71,4 @@
 /*-------------------------------------------------------------------*/
 
-
 struct work_queue *workq = NULL;
 
@@ -82,5 +78,4 @@
 }
 /*-------------------------------------------------------------------*/
-
 
 static const char *test_custom_workq_impl(bool stop, const char *qname)
@@ -108,5 +103,4 @@
 }
 
-
 static const char *test_custom_workq_stop(void)
 {
@@ -117,5 +111,4 @@
 	return NULL;
 }
-
 
 const char *test_workqueue_all(void)
Index: kernel/test/synch/workqueue3.c
===================================================================
--- kernel/test/synch/workqueue3.c	(revision e90cfa68438860942f686f82beddadc619e11d9a)
+++ kernel/test/synch/workqueue3.c	(revision 34c76e2fc56d7e5a4922e24522df3d9d48503150)
@@ -32,5 +32,4 @@
 #include <synch/workqueue.h>
 
-
 #define WAVES 10
 #define COUNT_POW 12
@@ -45,11 +44,8 @@
 #include "workq-test-core.h"
 
-
 static int core_workq_enqueue(work_t *work_item, work_func_t func)
 {
 	return workq_global_enqueue(work_item, func);
 }
-
-
 
 static const char *do_test(bool exit_early)
Index: kernel/test/test.h
===================================================================
--- kernel/test/test.h	(revision e90cfa68438860942f686f82beddadc619e11d9a)
+++ kernel/test/test.h	(revision 34c76e2fc56d7e5a4922e24522df3d9d48503150)
@@ -82,5 +82,4 @@
 extern const char *test_rcu1(void);
 
-
 extern test_t tests[];
 
