summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/elfutils/files/debian/testsuite-ignore-elflint.diff
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/elfutils/files/debian/testsuite-ignore-elflint.diff')
-rw-r--r--meta/recipes-devtools/elfutils/files/debian/testsuite-ignore-elflint.diff52
1 files changed, 52 insertions, 0 deletions
diff --git a/meta/recipes-devtools/elfutils/files/debian/testsuite-ignore-elflint.diff b/meta/recipes-devtools/elfutils/files/debian/testsuite-ignore-elflint.diff
new file mode 100644
index 0000000000..c4ce20c8a3
--- /dev/null
+++ b/meta/recipes-devtools/elfutils/files/debian/testsuite-ignore-elflint.diff
@@ -0,0 +1,52 @@
1From 03a343c6b1b72598fce654b8a638f106da44abfb Mon Sep 17 00:00:00 2001
2From: OpenEmbedded <oe.patch@oe>
3Date: Fri, 12 Apr 2019 08:05:50 +0000
4Subject: [PATCH] On many architectures this test fails because binaries/libs
5 produced by binutils don't pass elflint. However elfutils shouldn't FTBFS
6 because of this.
7
8So we run the tests on all archs to see what breaks, but if it breaks we ignore
9the result (exitcode 77 means: this test was skipped).
10
11Upstream-Status: Inappropriate [oe specific]
12
13Signed-off-by: Mingli Yu <Mingli.Yu@windriver.com>
14---
15 tests/run-elflint-self.sh | 2 +-
16 tests/test-subr.sh | 15 +++++++++++++++
17 2 files changed, 16 insertions(+), 1 deletion(-)
18
19diff --git a/tests/run-elflint-self.sh b/tests/run-elflint-self.sh
20index 58fa7d0..85d21a5 100755
21--- a/tests/run-elflint-self.sh
22+++ b/tests/run-elflint-self.sh
23@@ -18,5 +18,5 @@
24
25 . $srcdir/test-subr.sh
26
27-testrun_on_self ${abs_top_builddir}/src/elflint --quiet --gnu-ld
28+testrun_on_self_skip ${abs_top_builddir}/src/elflint --quiet --gnu-ld
29 testrun_on_self_compressed ${abs_top_builddir}/src/elflint --quiet --gnu-ld
30diff --git a/tests/test-subr.sh b/tests/test-subr.sh
31index 09f428d..26f61f1 100644
32--- a/tests/test-subr.sh
33+++ b/tests/test-subr.sh
34@@ -201,3 +201,18 @@ testrun_on_self_quiet()
35 # Only exit if something failed
36 if test $exit_status != 0; then exit $exit_status; fi
37 }
38+
39+# Same as testrun_on_self(), but skip on failure.
40+testrun_on_self_skip()
41+{
42+ exit_status=0
43+
44+ for file in $self_test_files; do
45+ testrun $* $file \
46+ || { echo "*** failure in $* $file"; exit_status=77; }
47+ done
48+
49+ # Only exit if something failed
50+ if test $exit_status != 0; then exit $exit_status; fi
51+}
52+