From 8b0542614c1fa62b24575e2247f326e17004aa8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=A1clav=20Kadl=C4=8D=C3=ADk?= Date: Wed, 28 Apr 2021 08:27:22 +0200 Subject: [PATCH] Import RHEL's regression test for #959422 --- .../Makefile | 65 +++++++++++++++++++ .../PURPOSE | 5 ++ .../ld-fail.c | 8 +++ .../main.fmf | 18 +++++ .../runtest.sh | 57 ++++++++++++++++ 5 files changed, 153 insertions(+) create mode 100644 tests/Regression/bz959422-TLS-variable-wrongly-relocated-on-debug-info/Makefile create mode 100644 tests/Regression/bz959422-TLS-variable-wrongly-relocated-on-debug-info/PURPOSE create mode 100644 tests/Regression/bz959422-TLS-variable-wrongly-relocated-on-debug-info/ld-fail.c create mode 100644 tests/Regression/bz959422-TLS-variable-wrongly-relocated-on-debug-info/main.fmf create mode 100755 tests/Regression/bz959422-TLS-variable-wrongly-relocated-on-debug-info/runtest.sh diff --git a/tests/Regression/bz959422-TLS-variable-wrongly-relocated-on-debug-info/Makefile b/tests/Regression/bz959422-TLS-variable-wrongly-relocated-on-debug-info/Makefile new file mode 100644 index 0000000..3cb05f8 --- /dev/null +++ b/tests/Regression/bz959422-TLS-variable-wrongly-relocated-on-debug-info/Makefile @@ -0,0 +1,65 @@ +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# +# Makefile of /CoreOS/binutils/Regression/bz959422-TLS-variable-wrongly-relocated-on-debug-info +# Description: Test for BZ#959422 (TLS variable wrongly relocated on .debug_info) +# Author: Milos Prchlik +# +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# +# Copyright (c) 2014 Red Hat, Inc. +# +# This copyrighted material is made available to anyone wishing +# to use, modify, copy, or redistribute it subject to the terms +# and conditions of the GNU General Public License version 2. +# +# This program is distributed in the hope that it will be +# useful, but WITHOUT ANY WARRANTY; without even the implied +# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR +# PURPOSE. See the GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public +# License along with this program; if not, write to the Free +# Software Foundation, Inc., 51 Franklin Street, Fifth Floor, +# Boston, MA 02110-1301, USA. +# +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +export TEST=/CoreOS/binutils/Regression/bz959422-TLS-variable-wrongly-relocated-on-debug-info +export TESTVERSION=1.0 + +BUILT_FILES= + +FILES=$(METADATA) runtest.sh Makefile PURPOSE ld-fail.c + +.PHONY: all install download clean + +run: $(FILES) build + ./runtest.sh + +build: $(BUILT_FILES) + test -x runtest.sh || chmod a+x runtest.sh + +clean: + rm -f *~ $(BUILT_FILES) + + +include /usr/share/rhts/lib/rhts-make.include + +$(METADATA): Makefile + @echo "Owner: Milos Prchlik " > $(METADATA) + @echo "Name: $(TEST)" >> $(METADATA) + @echo "TestVersion: $(TESTVERSION)" >> $(METADATA) + @echo "Path: $(TEST_DIR)" >> $(METADATA) + @echo "Description: Test for BZ#959422 (TLS variable wrongly relocated on .debug_info)" >> $(METADATA) + @echo "Type: Regression" >> $(METADATA) + @echo "TestTime: 5m" >> $(METADATA) + @echo "RunFor: binutils" >> $(METADATA) + @echo "Requires: binutils" >> $(METADATA) + @echo "Architectures: s390x" >> $(METADATA) + @echo "Priority: Normal" >> $(METADATA) + @echo "License: GPLv2" >> $(METADATA) + @echo "Confidential: yes" >> $(METADATA) + @echo "Destructive: no" >> $(METADATA) + @echo "Bug: 959422" >> $(METADATA) + + rhts-lint $(METADATA) diff --git a/tests/Regression/bz959422-TLS-variable-wrongly-relocated-on-debug-info/PURPOSE b/tests/Regression/bz959422-TLS-variable-wrongly-relocated-on-debug-info/PURPOSE new file mode 100644 index 0000000..c7aad99 --- /dev/null +++ b/tests/Regression/bz959422-TLS-variable-wrongly-relocated-on-debug-info/PURPOSE @@ -0,0 +1,5 @@ +PURPOSE of /CoreOS/binutils/Regression/bz959422-TLS-variable-wrongly-relocated-on-debug-info +Description: Test for BZ#959422 (TLS variable wrongly relocated on .debug_info) +Author: Milos Prchlik +Bug summary: TLS variable wrongly relocated on .debug_info +Bugzilla link: https://bugzilla.redhat.com/show_bug.cgi?id=959422 diff --git a/tests/Regression/bz959422-TLS-variable-wrongly-relocated-on-debug-info/ld-fail.c b/tests/Regression/bz959422-TLS-variable-wrongly-relocated-on-debug-info/ld-fail.c new file mode 100644 index 0000000..8dcc1eb --- /dev/null +++ b/tests/Regression/bz959422-TLS-variable-wrongly-relocated-on-debug-info/ld-fail.c @@ -0,0 +1,8 @@ +#include + +__thread const char *tls_var = "hello"; + +int main () +{ + return 0; +} diff --git a/tests/Regression/bz959422-TLS-variable-wrongly-relocated-on-debug-info/main.fmf b/tests/Regression/bz959422-TLS-variable-wrongly-relocated-on-debug-info/main.fmf new file mode 100644 index 0000000..7714e4f --- /dev/null +++ b/tests/Regression/bz959422-TLS-variable-wrongly-relocated-on-debug-info/main.fmf @@ -0,0 +1,18 @@ +summary: Test for BZ#959422 (TLS variable wrongly relocated on .debug_info) +description: | + Bug summary: TLS variable wrongly relocated on .debug_info + Bugzilla link: https://bugzilla.redhat.com/show_bug.cgi?id=959422 +contact: Milos Prchlik +component: +- binutils +test: ./runtest.sh +framework: beakerlib +recommend: +- binutils +- gcc +- gdb +duration: 5m +link: +- relates: https://bugzilla.redhat.com/show_bug.cgi?id=959422 +extra-summary: /CoreOS/binutils/Regression/bz959422-TLS-variable-wrongly-relocated-on-debug-info +extra-task: /CoreOS/binutils/Regression/bz959422-TLS-variable-wrongly-relocated-on-debug-info diff --git a/tests/Regression/bz959422-TLS-variable-wrongly-relocated-on-debug-info/runtest.sh b/tests/Regression/bz959422-TLS-variable-wrongly-relocated-on-debug-info/runtest.sh new file mode 100755 index 0000000..1535d54 --- /dev/null +++ b/tests/Regression/bz959422-TLS-variable-wrongly-relocated-on-debug-info/runtest.sh @@ -0,0 +1,57 @@ +#!/bin/bash +# vim: dict+=/usr/share/beakerlib/dictionary.vim cpt=.,w,b,u,t,i,k +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# +# runtest.sh of /CoreOS/binutils/Regression/bz959422-TLS-variable-wrongly-relocated-on-debug-info +# Description: Test for BZ#959422 (TLS variable wrongly relocated on .debug_info) +# Author: Milos Prchlik +# +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# +# Copyright (c) 2014 Red Hat, Inc. +# +# This copyrighted material is made available to anyone wishing +# to use, modify, copy, or redistribute it subject to the terms +# and conditions of the GNU General Public License version 2. +# +# This program is distributed in the hope that it will be +# useful, but WITHOUT ANY WARRANTY; without even the implied +# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR +# PURPOSE. See the GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public +# License along with this program; if not, write to the Free +# Software Foundation, Inc., 51 Franklin Street, Fifth Floor, +# Boston, MA 02110-1301, USA. +# +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +# Include Beaker environment +. /usr/share/beakerlib/beakerlib.sh || exit 1 + +PACKAGE="binutils" + +GCC=${GCC:-"gcc"} +GDB=${GDB:-"gdb"} + +rlJournalStart + rlPhaseStartSetup + rlAssertRpm $PACKAGE + rlRun "TmpDir=\$(mktemp -d)" 0 "Creating tmp directory" + rlRun "cp ld-fail.c $TmpDir/" + rlRun "pushd $TmpDir" + rlPhaseEnd + + rlPhaseStartTest + rlRun "$GCC -lpthread -g3 -O0 ld-fail.c -o ld-fail" + rlRun "$GDB ./ld-fail -q -ex start -ex 'print tls_var' -ex cont -ex quit &> gdb.log" + rlLogInfo "$(cat gdb.log)" + rlRun "grep -P '\\\$1 = 0x[0-9a-f]{1,16} \"hello\"' gdb.log" + rlPhaseEnd + + rlPhaseStartCleanup + rlRun "popd" + rlRun "rm -r $TmpDir" 0 "Removing tmp directory" + rlPhaseEnd +rlJournalPrintText +rlJournalEnd