xref: /netbsd-src/external/gpl3/gcc.old/dist/contrib/reghunt/bin/gcc-svn-checkfail (revision 6881a4007f077b54e5f51159c52b9b25f57deb0d)
1#! /bin/sh
2
3# Given an identifier that is an index into the current patch list,
4# return 1 if the corresponding SVN revision number is in the list of
5# known failures, 0 otherwise.
6
7ID=$1
8REV=`${REG_IDS} -f index -t rev ${ID}`
9grep -q "^${REV}$" ${REG_FAILLIST}
10