All of lore.kernel.org
 help / color / mirror / Atom feed
* [LTP]  [PATCH] file01.sh: Fix in was not recognized
@ 2019-04-22  1:29 zhe.he
  2019-04-22  2:55 ` Xiao Yang
  0 siblings, 1 reply; 3+ messages in thread
From: zhe.he @ 2019-04-22  1:29 UTC (permalink / raw)
  To: ltp

From: He Zhe <zhe.he@windriver.com>

Some file may have "pie" and possible other things appending after LSB or MSB,
which causes mismatch and the following error.

"file01 10 TFAIL: in: was not recognized"
..."ELF 64-bit LSB pie executable"...

This patches tunes the regulation expression to match those cases.

Signed-off-by: He Zhe <zhe.he@windriver.com>
---
 testcases/commands/file/file01.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/testcases/commands/file/file01.sh b/testcases/commands/file/file01.sh
index 0a8119e..34274c3 100755
--- a/testcases/commands/file/file01.sh
+++ b/testcases/commands/file/file01.sh
@@ -90,8 +90,8 @@ do_test()
 			    "[pP]ython3\{0,1\} script text executable";;
 	 9) file_test in.m4 "M4 macro processor script, ASCII text" \
 			    "ASCII M4 macro language pre-processor text";;
-	10) file_test in "ELF .*-bit $TEST_ARCH executable, .*" \
-			 "ELF .*-bit $TEST_ARCH shared object, .*";;
+	10) file_test in "ELF .*-bit $TEST_ARCH .* executable, .*" \
+			 "ELF .*-bit $TEST_ARCH .* shared object, .*";;
 	11) file_test in.ar "current ar archive";;
 	12) file_test in.tar "tar archive";;
 	13) file_test in.tar.gz "gzip compressed data, .*";;
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-04-22  8:34 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-04-22  1:29 [LTP] [PATCH] file01.sh: Fix in was not recognized zhe.he
2019-04-22  2:55 ` Xiao Yang
2019-04-22  8:34   ` He Zhe

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.