summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/ltp/ltp/0038-run-posix-option-group-test-replace-CWD-qith-PWD.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-extended/ltp/ltp/0038-run-posix-option-group-test-replace-CWD-qith-PWD.patch')
-rw-r--r--meta/recipes-extended/ltp/ltp/0038-run-posix-option-group-test-replace-CWD-qith-PWD.patch44
1 files changed, 0 insertions, 44 deletions
diff --git a/meta/recipes-extended/ltp/ltp/0038-run-posix-option-group-test-replace-CWD-qith-PWD.patch b/meta/recipes-extended/ltp/ltp/0038-run-posix-option-group-test-replace-CWD-qith-PWD.patch
deleted file mode 100644
index 8034152fd7..0000000000
--- a/meta/recipes-extended/ltp/ltp/0038-run-posix-option-group-test-replace-CWD-qith-PWD.patch
+++ /dev/null
@@ -1,44 +0,0 @@
1From f356775c400f40e3803d80a7bd295b4265959c45 Mon Sep 17 00:00:00 2001
2From: Vineet Gupta <Vineet.Gupta1@synopsys.com>
3Date: Mon, 29 Feb 2016 14:34:40 +0530
4Subject: [PATCH] run-posix-option-group-test: replace CWD qith PWD
5
6When running LTP Open Posix Testsuite there is lot of messages as:
7
8| Usage: basename FILE [SUFFIX]
9|
10| Strip directory path and .SUFFIX from FILE
11|
12| *******************
13| Testing
14| *******************
15
16This is because there is no $CWD defined in shell and it looks like $PWD
17was intended instead.
18
19Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
20Signed-off-by: Cyril Hrubis <chrubis@suse.cz>
21
22Upstream-Status: Backport
23
24Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
25---
26 testcases/open_posix_testsuite/bin/run-tests.sh | 2 +-
27 1 file changed, 1 insertion(+), 1 deletion(-)
28
29diff --git a/testcases/open_posix_testsuite/bin/run-tests.sh b/testcases/open_posix_testsuite/bin/run-tests.sh
30index d4bd988..5ee5687 100755
31--- a/testcases/open_posix_testsuite/bin/run-tests.sh
32+++ b/testcases/open_posix_testsuite/bin/run-tests.sh
33@@ -29,7 +29,7 @@ run_test_loop() {
34
35 cat <<EOF
36 *******************
37-Testing $(basename $CWD)
38+Testing $(basename $PWD)
39 *******************
40 $(printf "PASS\t\t%3d" $NUM_PASS)
41 $(printf "FAIL\t\t%3d" $NUM_FAIL)
42--
432.7.4
44