1
- #! /usr/ bin/env bash
1
+ #! /bin/sh
2
2
3
3
DFSAN_DIR=$( dirname " $0 " ) /../
4
4
DFSAN_CUSTOM_TESTS=${DFSAN_DIR} /../../test/dfsan/custom.cc
@@ -7,42 +7,42 @@ DFSAN_ABI_LIST=${DFSAN_DIR}/done_abilist.txt
7
7
8
8
DIFFOUT=$( mktemp -q /tmp/tmp.XXXXXXXXXX)
9
9
ERRORLOG=$( mktemp -q /tmp/tmp.XXXXXXXXXX)
10
+ DIFF_A=$( mktemp -q /tmp/tmp.XXXXXXXXXX)
11
+ DIFF_B=$( mktemp -q /tmp/tmp.XXXXXXXXXX)
10
12
11
13
on_exit () {
12
14
rm -f ${DIFFOUT} 2> /dev/null
13
15
rm -f ${ERRORLOG} 2> /dev/null
16
+ rm -f ${DIFF_A} 2> /dev/null
17
+ rm -f ${DIFF_B} 2> /dev/null
14
18
}
15
19
16
20
trap on_exit EXIT
17
-
18
- diff -u \
19
- <( grep -E " ^fun:.*=custom" ${DFSAN_ABI_LIST} | grep -v " dfsan_get_label" \
20
- | sed " s/^fun:\(.*\)=custom.*/\1/" | sort ) \
21
- <( grep -E " __dfsw.*\(" ${DFSAN_CUSTOM_WRAPPERS} \
22
- | sed " s/.*__dfsw_\(.*\)(.*/\1/" \
23
- | sort) > ${DIFFOUT}
21
+ grep -E " ^fun:.*=custom" ${DFSAN_ABI_LIST} | grep -v " dfsan_get_label" \
22
+ | sed " s/^fun:\(.*\)=custom.*/\1/" | sort > $DIFF_A
23
+ grep -E " __dfsw.*\(" ${DFSAN_CUSTOM_WRAPPERS} \
24
+ | sed " s/.*__dfsw_\(.*\)(.*/\1/" | sort > $DIFF_B
25
+ diff -u $DIFF_A $DIFF_B > ${DIFFOUT}
24
26
if [ $? -ne 0 ]
25
27
then
26
28
echo -n " The following differences between the ABI list and " >> ${ERRORLOG}
27
29
echo " the implemented custom wrappers have been found:" >> ${ERRORLOG}
28
30
cat ${DIFFOUT} >> ${ERRORLOG}
29
31
fi
30
32
31
- diff -u \
32
- <( grep -E __dfsw_ ${DFSAN_CUSTOM_WRAPPERS} \
33
- | sed " s/.*__dfsw_\([^(]*\).*/\1/" \
34
- | sort) \
35
- <( grep -E " ^\\ s*test_.*\(\);" ${DFSAN_CUSTOM_TESTS} \
36
- | sed " s/.*test_\(.*\)();/\1/" \
37
- | sort) > ${DIFFOUT}
33
+ grep -E __dfsw_ ${DFSAN_CUSTOM_WRAPPERS} \
34
+ | sed " s/.*__dfsw_\([^(]*\).*/\1/" | sort > $DIFF_A
35
+ grep -E " ^\\ s*test_.*\(\);" ${DFSAN_CUSTOM_TESTS} \
36
+ | sed " s/.*test_\(.*\)();/\1/" | sort > $DIFF_B
37
+ diff -u $DIFF_A $DIFF_B > ${DIFFOUT}
38
38
if [ $? -ne 0 ]
39
39
then
40
40
echo -n " The following differences between the implemented " >> ${ERRORLOG}
41
41
echo " custom wrappers and the tests have been found:" >> ${ERRORLOG}
42
42
cat ${DIFFOUT} >> ${ERRORLOG}
43
43
fi
44
44
45
- if [[ -s ${ERRORLOG} ] ]
45
+ if [ -s ${ERRORLOG} ]
46
46
then
47
47
cat ${ERRORLOG}
48
48
exit 1
0 commit comments