blob: 7f97ead616534c1efaeefe8bb8ad57d2f81ba38d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
#!/bin/sh
PKG_CONFIG_PATH="."
export PKG_CONFIG_PATH
if [ "$1" = --old-new ]; then
PKG_CONFIG_CMD=./gpg-error-config-old
else
PKG_CONFIG_CMD="pkg-config gpg-error"
if ! $PKG_CONFIG_CMD --exists >/dev/null; then
exit 77 # Skip tests
fi
fi
test_failed=""
failure () {
(
echo "Test result: $*"
echo "====================: $PKG_CONFIG_CMD"
echo "$OUTPUT_OLD"
echo "====================: gpg-error-config-new"
echo "$OUTPUT_NEW"
echo "===================="
) >> gpg-error-config-test.log
test_failed=yes
}
rm -f gpg-error-config-test.log
OUTPUT_OLD=$($PKG_CONFIG_CMD --libs)
OUTPUT_NEW=$(./gpg-error-config-new --libs)
[ "$OUTPUT_OLD" = "$OUTPUT_NEW" ] || failure --libs
OUTPUT_OLD=$($PKG_CONFIG_CMD --cflags)
OUTPUT_NEW=$(./gpg-error-config-new --cflags)
[ "$OUTPUT_OLD" = "$OUTPUT_NEW" ] || failure --cflags
OUTPUT_OLD=$($PKG_CONFIG_CMD --cflags --libs)
OUTPUT_NEW=$(./gpg-error-config-new --cflags --libs)
[ "$OUTPUT_OLD" = "$OUTPUT_NEW" ] || failure --cflags --libs
if [ "$PKG_CONFIG_CMD" = ./gpg-error-config-old ]; then
OUTPUT_OLD=$($PKG_CONFIG_CMD --version)
OUTPUT_NEW=$(./gpg-error-config-new --version)
[ "$OUTPUT_OLD" = "$OUTPUT_NEW" ] || failure --version
OUTPUT_OLD=$($PKG_CONFIG_CMD --mt --libs)
OUTPUT_NEW=$(./gpg-error-config-new --mt --libs)
[ "$OUTPUT_OLD" = "$OUTPUT_NEW" ] || failure --mt --libs
OUTPUT_OLD=$($PKG_CONFIG_CMD --mt --cflags)
OUTPUT_NEW=$(./gpg-error-config-new --mt --cflags)
[ "$OUTPUT_OLD" = "$OUTPUT_NEW" ] || failure --mt --cflags
OUTPUT_OLD=$($PKG_CONFIG_CMD --cflags --libs)
OUTPUT_NEW=$(./gpg-error-config-new --cflags --libs)
[ "$OUTPUT_OLD" = "$OUTPUT_NEW" ] || failure --cflags --libs
OUTPUT_OLD=$($PKG_CONFIG_CMD --mt --cflags --libs)
OUTPUT_NEW=$(./gpg-error-config-new --mt --cflags --libs)
[ "$OUTPUT_OLD" = "$OUTPUT_NEW" ] || failure --mt --cflags --libs
OUTPUT_OLD=$($PKG_CONFIG_CMD --variable=mtcflags)
OUTPUT_NEW=$(./gpg-error-config-new --variable=mtcflags)
[ "$OUTPUT_OLD" = "$OUTPUT_NEW" ] || failure --variable=mtcflags
OUTPUT_OLD=$($PKG_CONFIG_CMD --variable=mtlibs)
OUTPUT_NEW=$(./gpg-error-config-new --variable=mtlibs)
[ "$OUTPUT_OLD" = "$OUTPUT_NEW" ] || failure --variable=mtlibs
OUTPUT_OLD=$($PKG_CONFIG_CMD --variable=host)
OUTPUT_NEW=$(./gpg-error-config-new --variable=host)
[ "$OUTPUT_OLD" = "$OUTPUT_NEW" ] || failure --variable=host
fi
if [ -n "$test_failed" ]; then
OUTPUT_OLD=$($PKG_CONFIG_CMD --version)
OUTPUT_NEW=$(./gpg-error-config-new --version)
failure --version
exit 99
fi
exit 0
|