Adapt error messages in tests/scripts/list-*
This commit is contained in:
parent
45df597028
commit
d1ddd29e81
4 changed files with 21 additions and 4 deletions
|
@ -6,6 +6,8 @@ use strict;
|
||||||
use utf8;
|
use utf8;
|
||||||
use open qw(:std utf8);
|
use open qw(:std utf8);
|
||||||
|
|
||||||
|
-d 'include/mbedtls' or die "$0: must be run from root\n";
|
||||||
|
|
||||||
@ARGV = <include/mbedtls/*.h>;
|
@ARGV = <include/mbedtls/*.h>;
|
||||||
|
|
||||||
my @consts;
|
my @consts;
|
||||||
|
|
|
@ -2,7 +2,12 @@
|
||||||
|
|
||||||
set -eu
|
set -eu
|
||||||
|
|
||||||
HEADERS=$( ls include/mbedtls/*.h | egrep -v 'compat-1.2|openssl|bn_mul' )
|
if [ -d include/mbedtls ]; then :; else
|
||||||
|
echo "$0: must be run from root" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
HEADERS=$( ls include/mbedtls/*.h | egrep -v 'bn_mul' )
|
||||||
|
|
||||||
rm -f identifiers
|
rm -f identifiers
|
||||||
|
|
||||||
|
@ -22,7 +27,7 @@ if [ $( wc -l < _identifiers ) -eq $( wc -l < _decls ) ]; then
|
||||||
egrep -v '^(u?int(16|32|64)_t)$' _identifiers | sort > identifiers
|
egrep -v '^(u?int(16|32|64)_t)$' _identifiers | sort > identifiers
|
||||||
rm _identifiers
|
rm _identifiers
|
||||||
else
|
else
|
||||||
echo "Mismatch" 2>&1
|
echo "$0: oops, lost some identifiers" 2>&1
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,11 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
set =eu
|
set -eu
|
||||||
|
|
||||||
|
if [ -d include/mbedtls ]; then :; else
|
||||||
|
echo "$0: must be run from root" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
HEADERS=$( ls include/mbedtls/*.h )
|
HEADERS=$( ls include/mbedtls/*.h )
|
||||||
|
|
||||||
|
|
|
@ -2,8 +2,13 @@
|
||||||
|
|
||||||
set -eu
|
set -eu
|
||||||
|
|
||||||
|
if [ -d include/mbedtls ]; then :; else
|
||||||
|
echo "$0: must be run from root" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
if grep -i cmake Makefile >/dev/null; then
|
if grep -i cmake Makefile >/dev/null; then
|
||||||
echo "not compatible with cmake" >&2
|
echo "$0: not compatible with cmake" >&2
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue