diff options
Diffstat (limited to 'contrib/reghunt/bin/gcc-svn-recordfail')
-rwxr-xr-x | contrib/reghunt/bin/gcc-svn-recordfail | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/contrib/reghunt/bin/gcc-svn-recordfail b/contrib/reghunt/bin/gcc-svn-recordfail new file mode 100755 index 000000000..cf5cde754 --- /dev/null +++ b/contrib/reghunt/bin/gcc-svn-recordfail @@ -0,0 +1,8 @@ +#! /bin/sh + +# Given an identifier that is an index into the current patch list, +# record the corresponding SVN number to the list of known failures. + +ID=$1 +REV=`${REG_IDS} -f index -t rev ${ID}` +echo $REV >> ${REG_FAILLIST} |