zephyr/samples/microkernel/test
Yonattan Louise d85179a0cb Fix spaces after #ifdef
This commit deletes the exceeded spaces after #ifdef declaration on the line that
the checkpatch script mark as having the SPACING error in order to complay with
the defined coding style.

The script used to perform this fixes was:

checkpatch_script="$VXMICRO_BASE/scripts/checkpatch.pl --mailback --no-tree -f --emacs --summary-file --show-types --ignore BRACES,PRINTK_WITHOUT_KERN_LEVEL,SPLIT_STRING --max-line-length=100 "

cd $VXMICRO_BASE;
for file in $(find ./ -name "*.[ch]" ! -path "./scripts/*" ! -path "./host/src/wrsconfig/*");
do
	for line in $(eval $checkpatch_script $file | grep "ERROR:SPACING: exactly one space required after that #ifdef" | cut -d":" -f2)
	do
		sed -i -r -e ''$line' { s/^#ifdef[ \t]*/#ifdef /g }' $file;
	done;
done;

Signed-off-by: Yonattan Louise <yonattan.a.louise.mendoza@intel.com>
Change-Id: Ic9bb67243f91fa3b5aca6288b306f9b4e8c816fe
Signed-off-by: Anas Nashif <anas.nashif@intel.com>
2016-02-05 20:13:33 -05:00
..
test_critical Fix function declarations on samples 2016-02-05 20:13:11 -05:00
test_events Fix function declarations on samples 2016-02-05 20:13:11 -05:00
test_fifo Fix spaces around parentheses 2016-02-05 20:13:22 -05:00
test_fp_sharing Fix spaces after #ifdef 2016-02-05 20:13:33 -05:00
test_libs First commit 2015-04-10 16:44:37 -07:00
test_mail First commit 2015-04-10 16:44:37 -07:00
test_map Fix function declarations on samples 2016-02-05 20:13:11 -05:00
test_mutex First commit 2015-04-10 16:44:37 -07:00
test_pipe Fix function declarations on samples 2016-02-05 20:13:11 -05:00
test_pool Fix function declarations on samples 2016-02-05 20:13:11 -05:00
test_secure_string_api First commit 2015-04-10 16:44:37 -07:00
test_sema Fix function declarations on samples 2016-02-05 20:13:11 -05:00
test_sprintf Fix function declarations on samples 2016-02-05 20:13:11 -05:00
test_stackprot Fix function declarations on samples 2016-02-05 20:13:11 -05:00
test_static_idt Fix spaces after #ifdef 2016-02-05 20:13:33 -05:00
test_task Fix function declarations on samples 2016-02-05 20:13:11 -05:00
test_task_irq First commit 2015-04-10 16:44:37 -07:00
test_tickless First commit 2015-04-10 16:44:37 -07:00
test_timer First commit 2015-04-10 16:44:37 -07:00
test_xip First commit 2015-04-10 16:44:37 -07:00