aboutsummaryrefslogtreecommitdiff
path: root/binary_search_tool/sysroot_wrapper/switch_to_good.sh
blob: 3db8a9c653ff32cc1199feaafcfaaa4e27825416 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash -u

source ./sysroot_wrapper/common.sh

cat $1 > ${bisect_dir}/GOOD_SET

grep -v -x -F -f $1 ${bisect_dir}/BAD_SET > ${bisect_dir}/BAD_SET.tmp
mv ${bisect_dir}/BAD_SET.tmp ${bisect_dir}/BAD_SET

exit 0