]> git.ipfire.org Git - thirdparty/glibc.git/blame - scripts/update-abilist.sh
XFAIL libm-test.inc tests as needed for ibm128.
[thirdparty/glibc.git] / scripts / update-abilist.sh
CommitLineData
c100dca3
FW
1#!/bin/sh
2# Update abilist files based on differences on one architecture.
bfff8b1b 3# Copyright (C) 2015-2017 Free Software Foundation, Inc.
c100dca3
FW
4# This file is part of the GNU C Library.
5#
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.
10#
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.
15#
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/>.
19
20set -e
21export LC_ALL=C
22
23if [ $# -lt 3 ]; then
24 echo "usage: $0 OLD-FILE NEW-FILE FILES-TO-BE-PATCHED..." 1>&2
25 exit 2
26fi
27
28old_file="$1"
29shift
30new_file="$1"
31shift
32
33tmp_old_sorted="$(mktemp)"
34tmp_new_sorted="$(mktemp)"
35tmp_new_symbols="$(mktemp)"
36tmp_patched="$(mktemp)"
37
38cleanup () {
39 rm -f -- "$tmp_old_sorted" "$tmp_new_sorted" \
40 "$tmp_new_symbols" "$tmp_patched"
41}
42
43trap cleanup 0
44
45sort -u -o "$tmp_old_sorted" -- "$old_file"
46sort -u -o "$tmp_new_sorted" -- "$new_file"
47
48# -1 skips symbols only in $old_file (deleted symbols).
49# -3 skips symbols in both files (unchanged symbols).
50comm -1 -3 "$tmp_old_sorted" "$tmp_new_sorted" > "$tmp_new_symbols"
51
52new_symbol_count="$(wc -l < "$tmp_new_symbols")"
53if [ "$new_symbol_count" -eq 0 ]; then
54 echo "info: no symbols added" 1>&2
55 exit 0
56fi
57
58echo "info: $new_symbol_count symbol(s) added" 1>&2
59
60for to_be_patched in "$@" ; do
61 sort -u -o "$tmp_patched" -- "$to_be_patched" "$tmp_new_symbols"
62 if ! cmp -s -- "$to_be_patched" "$tmp_patched"; then
63 echo "info: updating $to_be_patched" 1>&2
64 cp -- "$tmp_patched" "$to_be_patched"
65 fi
66done