summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/ltp/ltp/0001-file01.sh-Fix-in-was-not-recognized.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-extended/ltp/ltp/0001-file01.sh-Fix-in-was-not-recognized.patch')
-rw-r--r--meta/recipes-extended/ltp/ltp/0001-file01.sh-Fix-in-was-not-recognized.patch38
1 files changed, 0 insertions, 38 deletions
diff --git a/meta/recipes-extended/ltp/ltp/0001-file01.sh-Fix-in-was-not-recognized.patch b/meta/recipes-extended/ltp/ltp/0001-file01.sh-Fix-in-was-not-recognized.patch
deleted file mode 100644
index 5cd9e082f2..0000000000
--- a/meta/recipes-extended/ltp/ltp/0001-file01.sh-Fix-in-was-not-recognized.patch
+++ /dev/null
@@ -1,38 +0,0 @@
1From 974e9b862e503c50501079e6586f81918e94a849 Mon Sep 17 00:00:00 2001
2From: He Zhe <zhe.he@windriver.com>
3Date: Fri, 19 Apr 2019 17:57:48 +0800
4Subject: [PATCH] file01.sh: Fix in was not recognized
5
6Some file has "pie" appending after LSB or MSB, which causes mismatch and the
7following error.
8
9"file01 10 TFAIL: in: was not recognized"
10..."ELF 64-bit LSB pie executable"...
11
12This patches tunes the regulation expression to include those cases.
13
14Upstream-Status: Submitted [http://lists.linux.it/pipermail/ltp/2019-April/011758.html]
15
16Signed-off-by: He Zhe <zhe.he@windriver.com>
17---
18 testcases/commands/file/file01.sh | 4 +++-
19 1 file changed, 3 insertions(+), 1 deletion(-)
20
21diff --git a/testcases/commands/file/file01.sh b/testcases/commands/file/file01.sh
22index 0a8119e..55c0433 100755
23--- a/testcases/commands/file/file01.sh
24+++ b/testcases/commands/file/file01.sh
25@@ -91,7 +91,9 @@ do_test()
26 9) file_test in.m4 "M4 macro processor script, ASCII text" \
27 "ASCII M4 macro language pre-processor text";;
28 10) file_test in "ELF .*-bit $TEST_ARCH executable, .*" \
29- "ELF .*-bit $TEST_ARCH shared object, .*";;
30+ "ELF .*-bit $TEST_ARCH shared object, .*" \
31+ "ELF .*-bit $TEST_ARCH pie executable, .*" \
32+ "ELF .*-bit $TEST_ARCH pie shared object, .*";;
33 11) file_test in.ar "current ar archive";;
34 12) file_test in.tar "tar archive";;
35 13) file_test in.tar.gz "gzip compressed data, .*";;
36--
372.7.4
38