source: MondoRescue/trunk/mindi-busybox/testsuite/all_sourcecode.tests@ 956

Last change on this file since 956 was 821, checked in by Bruno Cornec, 18 years ago

Addition of busybox 1.2.1 as a mindi-busybox new package
This should avoid delivering binary files in mindi not built there (Fedora and Debian are quite serious about that)

  • Property svn:executable set to *
File size: 2.1 KB
Line 
1#!/bin/sh
2
3# Tests for the sourcecode base itself.
4# Copyright 2006 by Mike Frysinger <vapier@gentoo.org>
5# Licensed under GPL v2, see file LICENSE for details.
6
7[ -n "$srcdir" ] || srcdir=$(pwd)
8. testing.sh
9
10
11#
12# if we don't have the sourcecode available, let's just bail
13#
14[ -s "$srcdir/../Makefile" ] || exit 0
15[ -s "$srcdir/../include/applets.h" ] || exit 0
16
17
18#
19# verify the applet order is correct in applets.h, otherwise
20# applets won't be called properly.
21#
22sed -n -e '/^USE_[A-Z]*(APPLET(/{s:.*(::;s:,.*::;s:"::g;p}' \
23 $srcdir/../include/applets.h > applet.order.current
24LC_ALL=C sort applet.order.current > applet.order.correct
25testing "Applet order" "diff -u applet.order.current applet.order.correct" "" "" ""
26rm -f applet.order.current applet.order.correct
27
28
29#
30# check for misc common typos
31#
32find $srcdir/../ \
33 '(' -type d -a '(' -name .svn -o -name testsuite ')' -prune ')' \
34 -o '(' -type f -a -print0 ')' | xargs -0 \
35 grep -I \
36 -e '\<compatability\>' \
37 -e '\<compatable\>' \
38 -e '\<fordeground\>' \
39 -e '\<depency\>' -e '\<dependancy\>' -e '\<dependancies\>' \
40 -e '\<defalt\>' \
41 -e '\<remaing\>' \
42 -e '\<queueing\>' \
43 -e '\<detatch\>' \
44 -e '\<sempahore\>' \
45 -e '\<reprenstative\>' \
46 -e '\<overriden\>' \
47 -e '\<readed\>' \
48 -e '\<formated\>' \
49 -e '\<algorithic\>' \
50 -e '\<deamon\>' \
51 -e '\<derefernce\>' \
52 | sed -e "s:^$srcdir/\.\./::g" > src.typos
53testing "Common typos" "cat src.typos" "" "" ""
54rm -f src.typos
55
56
57#
58# don't allow obsolete functions
59#
60find $srcdir/.. '(' -name '*.c' -o -name '*.h' ')' -print0 | xargs -0 \
61 grep -E -e '\<(bcmp|bcopy|bzero|getwd|index|mktemp|rindex|utimes)\>[[:space:]]*\(' \
62 | sed -e "s:^$srcdir/\.\./::g" > src.obsolete.funcs
63testing "Obsolete function usage" "cat src.obsolete.funcs" "" "" ""
64rm -f src.obsolete.funcs
65
66
67#
68# don't allow obsolete headers
69#
70find $srcdir/.. '(' -name '*.c' -o -name '*.h' ')' -print0 | xargs -0 \
71 grep -E -e '\<(malloc|memory|sys/(errno|fcntl|signal|stropts|termios|unistd))\.h\>' \
72 | sed -e "s:^$srcdir/\.\./::g" > src.obsolete.headers
73testing "Obsolete headers" "cat src.obsolete.headers" "" "" ""
74rm -f src.obsolete.headers
75
76
77exit $FAILCOUNT
Note: See TracBrowser for help on using the repository browser.