zephyr/samples/nanokernel/test
Yonattan Louise a8571c4b7f Fix checkpatch issue - WARNING:SPACING
Spaces between the function name and the open parenthesis are not allowed.
This commit fixes the case where only one open parenthesis with leading
whitespaces is present in the line.

	#!/bin/bash

	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 "

	for file in $(find ./ -name "*.[ch]" ! -path "./scripts/*" ! -path "./host/src/wrsconfig/*");
	do
		# fixing spaces between function name and open parenthesis
		for line in $(eval $checkpatch_script $file | grep "WARNING:SPACING: space prohibited between function name and open parenthesis '('" | cut -d":" -f2)
		do
			echo "$file : $line"
			sed -i ''$line' { /[ \t](.*[ \t](/ b skip_it s/[ \t]*(/(/ ; :skip_it }' $file;
		done;
	done;

Change-Id: I1e026eaee930e297374e5f2f725b78f29824dee3
Signed-off-by: Yonattan Louise <yonattan.a.louise.mendoza@intel.com>
2016-02-05 20:13:54 -05:00
..
test_arm_m3_irq_vector_table Fix checkpatch issue - WARNING:SPACING 2016-02-05 20:13:54 -05:00
test_bluetooth
test_context Fix checkpatch issue - WARNING:SPACING 2016-02-05 20:13:54 -05:00
test_fifo Fix checkpatch issue - WARNING:SPACING 2016-02-05 20:13:54 -05:00
test_fp_sharing
test_lifo Fix checkpatch issue - WARNING:SPACING 2016-02-05 20:13:54 -05:00
test_sema Fix checkpatch issue - WARNING:SPACING 2016-02-05 20:13:54 -05:00
test_stack Fix checkpatch issue - WARNING:SPACING 2016-02-05 20:13:54 -05:00
test_stackprot
test_static_idt
test_timer Fix checkpatch issue - WARNING:SPACING 2016-02-05 20:13:54 -05:00
test_xip