2014-07-11 17:31:27 -04:00
|
|
|
#!/bin/bash
|
2019-02-11 07:14:09 -08:00
|
|
|
# SPDX-License-Identifier: GPL-2.0+
|
2013-09-28 14:12:21 -07:00
|
|
|
#
|
|
|
|
|
# Check the build output from an rcutorture run for goodness.
|
|
|
|
|
# The "file" is a pathname on the local system, and "title" is
|
|
|
|
|
# a text string for error-message purposes.
|
|
|
|
|
#
|
|
|
|
|
# The file must contain kernel build output.
|
|
|
|
|
#
|
2014-07-11 19:47:35 -04:00
|
|
|
# Usage: parse-build.sh file title
|
2013-09-28 14:12:21 -07:00
|
|
|
#
|
|
|
|
|
# Copyright (C) IBM Corporation, 2011
|
|
|
|
|
#
|
2019-02-11 07:14:09 -08:00
|
|
|
# Authors: Paul E. McKenney <paulmck@linux.ibm.com>
|
2013-09-28 14:12:21 -07:00
|
|
|
|
2014-11-21 13:54:57 -08:00
|
|
|
F=$1
|
2013-09-28 14:12:21 -07:00
|
|
|
title=$2
|
2017-08-30 15:33:49 -07:00
|
|
|
T=${TMPDIR-/tmp}/parse-build.sh.$$
|
2014-11-21 13:54:57 -08:00
|
|
|
trap 'rm -rf $T' 0
|
|
|
|
|
mkdir $T
|
2013-09-28 14:12:21 -07:00
|
|
|
|
2013-10-28 06:34:22 -07:00
|
|
|
. functions.sh
|
|
|
|
|
|
2020-12-23 16:00:27 -08:00
|
|
|
if grep -q CC < $F || test -n "$TORTURE_TRUST_MAKE" || grep -qe --trust-make < `dirname $F`/../log
|
2013-09-28 14:12:21 -07:00
|
|
|
then
|
|
|
|
|
:
|
|
|
|
|
else
|
2013-10-28 06:34:22 -07:00
|
|
|
print_bug $title no build
|
2013-09-28 14:12:21 -07:00
|
|
|
exit 1
|
|
|
|
|
fi
|
|
|
|
|
|
2014-11-21 13:54:57 -08:00
|
|
|
if grep -q "error:" < $F
|
2013-10-28 06:34:22 -07:00
|
|
|
then
|
|
|
|
|
print_bug $title build errors:
|
2014-11-21 13:54:57 -08:00
|
|
|
grep "error:" < $F
|
2013-10-28 06:34:22 -07:00
|
|
|
exit 2
|
|
|
|
|
fi
|
|
|
|
|
|
2014-11-21 13:54:57 -08:00
|
|
|
grep warning: < $F > $T/warnings
|
|
|
|
|
grep "include/linux/*rcu*\.h:" $T/warnings > $T/hwarnings
|
|
|
|
|
grep "kernel/rcu/[^/]*:" $T/warnings > $T/cwarnings
|
2021-11-10 07:47:41 -08:00
|
|
|
grep "^ld: .*undefined reference to" $T/warnings | head -1 > $T/ldwarnings
|
|
|
|
|
cat $T/hwarnings $T/cwarnings $T/ldwarnings > $T/rcuwarnings
|
2014-11-21 13:54:57 -08:00
|
|
|
if test -s $T/rcuwarnings
|
2013-09-28 14:12:21 -07:00
|
|
|
then
|
2013-10-28 06:34:22 -07:00
|
|
|
print_warning $title build errors:
|
2014-11-21 13:54:57 -08:00
|
|
|
cat $T/rcuwarnings
|
2013-09-28 14:12:21 -07:00
|
|
|
exit 2
|
|
|
|
|
fi
|
|
|
|
|
exit 0
|