/cp
[official-gcc.git] / gcc / testsuite / gcc.src / maintainers.exp
blobb0a09173893347f2832da0e944782341b804ada4
1 # Copyright (C) 2018 Free Software Foundation, Inc.
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 3 of the License, or
6 # (at your option) any later version.
7 #
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License for more details.
13 # You should have received a copy of the GNU General Public License
14 # along with GCC; see the file COPYING3. If not see
15 # <http://www.gnu.org/licenses/>.
17 load_lib "gcc-defs.exp"
19 proc gcc_src_run_maintainers_verify_sh {} {
20 set script maintainers-verify.sh
22 global srcdir
23 set rootdir $srcdir/../..
24 set contrib $rootdir/contrib
26 set maintainers $rootdir/MAINTAINERS
28 set verify_output [exec $contrib/$script $maintainers]
29 if { "$verify_output" == "" } {
30 pass "$script"
31 } else {
32 send_log "$verify_output\n"
33 fail "$script"
37 if ![gcc_parallel_test_run_p maintainers] {
38 return
40 gcc_parallel_test_enable 0
41 gcc_src_run_maintainers_verify_sh
42 gcc_parallel_test_enable 1