| Revision 4297,
1.4 KB
checked in by sam, 3 years ago
(diff) |
|
Fix check-build verbosity.
|
-
Property svn:executable set to
*
|
| Line | |
|---|
| 1 | #!/bin/sh |
|---|
| 2 | |
|---|
| 3 | ret=0 |
|---|
| 4 | |
|---|
| 5 | # |
|---|
| 6 | # Check that the Win32 config.h is in sync with config.h.in |
|---|
| 7 | # |
|---|
| 8 | |
|---|
| 9 | config_h_in=$(dirname "$0")/../config.h.in |
|---|
| 10 | win32_config_h=$(dirname "$0")/../win32/config.h |
|---|
| 11 | |
|---|
| 12 | failure=0 |
|---|
| 13 | for key in $(sed -ne 's/.*#undef *\([A-Za-z0-9_]*\).*/\1/p' "$config_h_in"); |
|---|
| 14 | do |
|---|
| 15 | if ! grep '[ef] \<'"$key"'\>' "$win32_config_h" >/dev/null 2>&1; then |
|---|
| 16 | echo "error: $key missing from win32/config.h" |
|---|
| 17 | failure=1 |
|---|
| 18 | fi |
|---|
| 19 | done |
|---|
| 20 | if test "$failure" != "0"; then |
|---|
| 21 | ret=1 |
|---|
| 22 | else |
|---|
| 23 | echo "0 errors in Win32 config.h" |
|---|
| 24 | fi |
|---|
| 25 | |
|---|
| 26 | # |
|---|
| 27 | # Check that we have no tabs or trailing spaces in the source code |
|---|
| 28 | # |
|---|
| 29 | failure=0 |
|---|
| 30 | for dir in caca src cxx examples ruby tools; do |
|---|
| 31 | pushd ../$dir >/dev/null |
|---|
| 32 | for x in $(make -s echo-sources); do |
|---|
| 33 | case "$x" in |
|---|
| 34 | *.c|*.cpp|*.h|*.m) ;; |
|---|
| 35 | *) continue ;; |
|---|
| 36 | esac |
|---|
| 37 | if grep '[[:space:]]$' "$x" >/dev/null 2>&1; then |
|---|
| 38 | echo "error: $dir/$x contains trailing spaces" |
|---|
| 39 | failure=1 |
|---|
| 40 | fi |
|---|
| 41 | if grep ' ' "$x" >/dev/null 2>&1; then |
|---|
| 42 | echo "error: $dir/$x contains tabs" |
|---|
| 43 | failure=1 |
|---|
| 44 | fi |
|---|
| 45 | done |
|---|
| 46 | popd >/dev/null |
|---|
| 47 | done |
|---|
| 48 | if test "$failure" != "0"; then |
|---|
| 49 | ret=1 |
|---|
| 50 | else |
|---|
| 51 | echo "0 errors in source code" |
|---|
| 52 | fi |
|---|
| 53 | |
|---|
| 54 | # |
|---|
| 55 | # Check for Doxygen errors |
|---|
| 56 | # |
|---|
| 57 | warnings="$(grep -c Warning: ../doc/doxygen.log)" |
|---|
| 58 | if test "$warnings" != "0"; then |
|---|
| 59 | echo "error: $warnings warnings in Doxygen generation" |
|---|
| 60 | ret=1 |
|---|
| 61 | else |
|---|
| 62 | echo "0 errors in documentation" |
|---|
| 63 | fi |
|---|
| 64 | |
|---|
| 65 | if test "$ret" != "0"; then |
|---|
| 66 | exit 1 |
|---|
| 67 | fi |
|---|
| 68 | |
|---|
| 69 | exit 0 |
|---|
| 70 | |
|---|
Note: See
TracBrowser
for help on using the repository browser.