Skip to content

Commit e4320f5

Browse files
committedOct 8, 2014
Remove bashisms and switch to /bin/sh
On a default FreeBSD install Bash is not installed and fdescfs is not mounted. Use plain sh functionality instead. Differential Revision: http://reviews.llvm.org/D5631 llvm-svn: 219333
1 parent 8897b8d commit e4320f5

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed
 

‎compiler-rt/lib/dfsan/scripts/check_custom_wrappers.sh

+16-16
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env bash
1+
#!/bin/sh
22

33
DFSAN_DIR=$(dirname "$0")/../
44
DFSAN_CUSTOM_TESTS=${DFSAN_DIR}/../../test/dfsan/custom.cc
@@ -7,42 +7,42 @@ DFSAN_ABI_LIST=${DFSAN_DIR}/done_abilist.txt
77

88
DIFFOUT=$(mktemp -q /tmp/tmp.XXXXXXXXXX)
99
ERRORLOG=$(mktemp -q /tmp/tmp.XXXXXXXXXX)
10+
DIFF_A=$(mktemp -q /tmp/tmp.XXXXXXXXXX)
11+
DIFF_B=$(mktemp -q /tmp/tmp.XXXXXXXXXX)
1012

1113
on_exit() {
1214
rm -f ${DIFFOUT} 2> /dev/null
1315
rm -f ${ERRORLOG} 2> /dev/null
16+
rm -f ${DIFF_A} 2> /dev/null
17+
rm -f ${DIFF_B} 2> /dev/null
1418
}
1519

1620
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}
2426
if [ $? -ne 0 ]
2527
then
2628
echo -n "The following differences between the ABI list and ">> ${ERRORLOG}
2729
echo "the implemented custom wrappers have been found:" >> ${ERRORLOG}
2830
cat ${DIFFOUT} >> ${ERRORLOG}
2931
fi
3032

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}
3838
if [ $? -ne 0 ]
3939
then
4040
echo -n "The following differences between the implemented " >> ${ERRORLOG}
4141
echo "custom wrappers and the tests have been found:" >> ${ERRORLOG}
4242
cat ${DIFFOUT} >> ${ERRORLOG}
4343
fi
4444

45-
if [[ -s ${ERRORLOG} ]]
45+
if [ -s ${ERRORLOG} ]
4646
then
4747
cat ${ERRORLOG}
4848
exit 1

0 commit comments

Comments
 (0)
Please sign in to comment.