From 25cd7fd702f6439e0fddce162bd197ff77944ebf Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Fri, 15 Feb 2008 01:42:28 +0000 Subject: add a test case for usage strings to catch people forgetting to add trailing escape in middle of usage --- testsuite/all_sourcecode.tests | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'testsuite/all_sourcecode.tests') diff --git a/testsuite/all_sourcecode.tests b/testsuite/all_sourcecode.tests index a537dcee9..86f61b7c3 100755 --- a/testsuite/all_sourcecode.tests +++ b/testsuite/all_sourcecode.tests @@ -15,6 +15,20 @@ [ -s "$srcdir/../include/applets.h" ] || exit 0 +# +# make sure all usage strings are properly escaped. oftentimes people miss +# an escape sequence so we end up with: +# #define foo_usage \ +# " this line is ok" \ +# " as is this line" +# " but this one is broken as the \ is missing from above" +# +${CROSS_COMPILE}cpp -dD -P $srcdir/../include/usage.h \ + | sed -e '/^#define/d' -e '/^$/d' > src.usage.escaped +testing "Usage strings escaped" "cat src.usage.escaped" "" "" "" +rm -f src.usage.escaped + + # # verify the applet order is correct in applets.h, otherwise # applets won't be called properly. -- cgit v1.2.3