S390: Move utf8-utf32-z9.c to multiarch folder and use s390_libc_ifunc_expr macro.
[glibc.git] / scripts / merge-test-results.sh
blobe32c5f63037a5c266a9dd7ad9229d5bb021dde44
1 #!/bin/sh
2 # Merge test results of individual tests or subdirectories.
3 # Copyright (C) 2014-2017 Free Software Foundation, Inc.
4 # This file is part of the GNU C Library.
6 # The GNU C Library is free software; you can redistribute it and/or
7 # modify it under the terms of the GNU Lesser General Public
8 # License as published by the Free Software Foundation; either
9 # version 2.1 of the License, or (at your option) any later version.
11 # The GNU C Library is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 # Lesser General Public License for more details.
16 # You should have received a copy of the GNU Lesser General Public
17 # License along with the GNU C Library; if not, see
18 # <http://www.gnu.org/licenses/>.
20 # usage: merge-test-results.sh -s objpfx subdir test-name...
21 # (subdirectory tests; empty subdir at top level), or
22 # merge-test-results.sh -t objpfx subdir-file-name subdir...
23 # (top-level merge)
25 set -e
27 type=$1
28 objpfx=$2
29 shift 2
31 case $type in
32 -s)
33 subdir=$1
34 shift
35 subdir=${subdir:+$subdir/}
36 for t in "$@"; do
37 if [ -s "$objpfx$t.test-result" ]; then
38 head -n1 "$objpfx$t.test-result"
39 else
40 echo "UNRESOLVED: $subdir$t"
42 done
45 -t)
46 subdir_file_name=$1
47 shift
48 for d in "$@"; do
49 if [ -f "$objpfx$d/$subdir_file_name" ]; then
50 cat "$objpfx$d/$subdir_file_name"
51 else
52 echo "ERROR: test results for $d directory missing"
54 done
58 echo "unknown type $type" >&2
59 exit 1
61 esac