summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/elfutils/files/0001-skip-the-test-when-gcc-not-deployed.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/elfutils/files/0001-skip-the-test-when-gcc-not-deployed.patch')
-rw-r--r--meta/recipes-devtools/elfutils/files/0001-skip-the-test-when-gcc-not-deployed.patch45
1 files changed, 45 insertions, 0 deletions
diff --git a/meta/recipes-devtools/elfutils/files/0001-skip-the-test-when-gcc-not-deployed.patch b/meta/recipes-devtools/elfutils/files/0001-skip-the-test-when-gcc-not-deployed.patch
new file mode 100644
index 0000000000..67ca0e4c77
--- /dev/null
+++ b/meta/recipes-devtools/elfutils/files/0001-skip-the-test-when-gcc-not-deployed.patch
@@ -0,0 +1,45 @@
1From 61939d2e552e7645ecd671fa01cf1c7a72caa82a Mon Sep 17 00:00:00 2001
2From: Mingli Yu <Mingli.Yu@windriver.com>
3Date: Fri, 12 Apr 2019 16:29:58 +0800
4Subject: [PATCH] skip the test when gcc not deployed
5
6Skip the tests which depend on gcc when
7gcc not deployed.
8
9Upstream-Status: Inappropriate [oe specific]
10
11Signed-off-by: Mingli Yu <Mingli.Yu@windriver.com>
12---
13 tests/run-strip-g.sh | 2 ++
14 tests/run-strip-nothing.sh | 2 ++
15 2 files changed, 4 insertions(+)
16
17diff --git a/tests/run-strip-g.sh b/tests/run-strip-g.sh
18index 1303819..a943dec 100755
19--- a/tests/run-strip-g.sh
20+++ b/tests/run-strip-g.sh
21@@ -24,6 +24,8 @@
22
23 tempfiles a.out strip.out debug.out readelf.out
24
25+# skip the test if gcc deployed
26+which gcc || exit 77
27 echo Create debug a.out.
28 echo "int main() { return 1; }" | gcc -g -xc -
29
30diff --git a/tests/run-strip-nothing.sh b/tests/run-strip-nothing.sh
31index 914fdfb..d03f734 100755
32--- a/tests/run-strip-nothing.sh
33+++ b/tests/run-strip-nothing.sh
34@@ -22,6 +22,8 @@
35
36 tempfiles a.out strip.out debug.out
37
38+# skip the case if no gcc deployed
39+which gcc || exit 77
40 # Create no-debug a.out.
41 echo "int main() { return 1; }" | gcc -s -xc -
42
43--
442.7.4
45