svn commit: trunk/busybox/testsuite

vapier at busybox.net vapier at busybox.net
Sun Apr 16 06:09:48 UTC 2006


Author: vapier
Date: 2006-04-15 23:09:46 -0700 (Sat, 15 Apr 2006)
New Revision: 14888

Log:
add some tests for common typos and for obsolete functions

Modified:
   trunk/busybox/testsuite/all_sourcecode.tests


Changeset:
Modified: trunk/busybox/testsuite/all_sourcecode.tests
===================================================================
--- trunk/busybox/testsuite/all_sourcecode.tests	2006-04-16 05:58:21 UTC (rev 14887)
+++ trunk/busybox/testsuite/all_sourcecode.tests	2006-04-16 06:09:46 UTC (rev 14888)
@@ -7,12 +7,58 @@
 [ -n "$srcdir" ] || srcdir=$(pwd)
 . testing.sh
 
+
+#
+# if we don't have the sourcecode available, let's just bail
+#
+[ -s "$srcdir/../Makefile" ] || exit 0
+[ -s "$srcdir/../include/applets.h" ] || exit 0
+
+
+#
 # verify the applet order is correct in applets.h, otherwise
 # applets won't be called properly.
+#
 sed -n -e '/^USE_[A-Z]*(APPLET(/{s:.*(::;s:,.*::;s:"::g;p}' \
-	$srcdir/../include/applets.h > applet.order.current 2> /dev/null
+	$srcdir/../include/applets.h > applet.order.current
 LC_ALL=C sort applet.order.current > applet.order.correct
 testing "Applet order" "diff -u applet.order.current applet.order.correct" "" "" ""
 rm -f applet.order.current applet.order.correct
 
+
+#
+# check for misc common typos
+#
+find $srcdir/../ \
+	'(' -type d -a '(' -name .svn -o -name testsuite ')' -prune ')' \
+	-o '(' -type f -a -print0 ')' | xargs -0 \
+	grep -I \
+		-e '\<compatability\>' \
+		-e '\<compatable\>' \
+		-e '\<fordeground\>' \
+		-e '\<depency\>' \
+		-e '\<defalt\>' \
+		-e '\<remaing\>' \
+		-e '\<queuing\>' \
+		-e '\<detatch\>' \
+		-e '\<sempahore\>' \
+		-e '\<reprenstative\>' \
+		-e '\<overriden\>' \
+		-e '\<readed\>' \
+		-e '\<formated\>' \
+		| sed -e "s:^$srcdir/\.\./::g" > src.typos
+testing "Common typos" "cat src.typos" "" "" ""
+rm -f src.typos
+
+
+#
+# don't allow obsolete functions
+#
+find $srcdir/.. '(' -name '*.c' -o -name '*.h' ')' -print0 | xargs -0 \
+	grep -E -e '\<(bcmp|bcopy|bzero|getwd|index|mktemp|rindex|utimes)\>[[:space:]]*\(' \
+	| sed -e "s:^$srcdir/\.\./::g" > src.obsolete
+testing "Obsolete function usage" "cat src.obsolete" "" "" ""
+rm -f src.obsolete
+
+
 exit $FAILCOUNT




More information about the busybox-cvs mailing list