diff options
author | EuAndreh <eu@euandre.org> | 2021-08-06 16:38:24 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-08-06 16:38:24 -0300 |
commit | 59f80c772808c868e12a1182d913617ef375b7d2 (patch) | |
tree | 6dbd737e1824ee5480a29d0aab9b27d80b0a9a8c /aux | |
parent | tests/dev-integration.sh: Address ShellCheck offenses (diff) | |
download | gistatic-59f80c772808c868e12a1182d913617ef375b7d2.tar.gz gistatic-59f80c772808c868e12a1182d913617ef375b7d2.tar.xz |
mv aux/assert-catgets.sh tests/assert-catgets.sh
Diffstat (limited to 'aux')
-rw-r--r-- | aux/assert-catgets.sh | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/aux/assert-catgets.sh b/aux/assert-catgets.sh deleted file mode 100644 index 885e186..0000000 --- a/aux/assert-catgets.sh +++ /dev/null @@ -1,67 +0,0 @@ -#!/bin/sh -set -eu - -assert_sequential_ids() { - awk ' - BEGIN { - n = 0 - } - - /^#define MSG_/ { - if (++n != $3) { - print "Bad sequential ID:" - printf "%s:%s:%s\n", FILENAME, NR, $0 - printf "expected: %s\ngot: %s\n", n, $3 - exit 1 - } - } - ' "$1" -} - -assert_consistent_msg_definitions() { - awk ' - BEGIN { - i = 0 - j = 0 - } - - /^#define MSG_/ { - defines[i++] = $2 - } - - /^\t\[MSG_/ { - msgs[j++] = substr($0, 3, index($0, "]") - 3) - } - - END { - for (n in defines) { - if (defines[n] != msgs[n]) { - printf "Order mismatch between #define" - printf " and usage in MSGS[]:\n" - printf "#define: %s\nMSGS[]: %s\n", - defines[n], msgs[n] - exit 1 - } - } - } - ' "$1" -} - -assert_no_unused_msgs() { - DEFINES="$(mktemp)" - USAGES="$(mktemp)" - awk '/^#define MSG_/ { print $2 }' "$f" | sort > "$DEFINES" - awk -F'_\\(' ' - /_\(MSG_/ { print substr($2, 0, index($2, ")") - 1) } - ' "$f" | sort | uniq > "$USAGES" - if ! diff "$DEFINES" "$USAGES"; then - echo 'Some defined MSG_ items not being used' >&2 - exit 1 - fi -} - -for f in "$@"; do - assert_sequential_ids "$f" - assert_consistent_msg_definitions "$f" - assert_no_unused_msgs "$f" -done |