diff options
author | Jackie Huang <jackie.huang@windriver.com> | 2016-12-12 13:59:47 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-12-17 09:56:41 +0000 |
commit | 527437174bf74b2205dd5b48cbb64a54d7698162 (patch) | |
tree | cab451970a6fa92e56874aa889ff0ed3d7584f17 | |
parent | c8f7c26148a926c6e49ab95a18c4702204e57551 (diff) | |
download | openembedded-core-527437174bf74b2205dd5b48cbb64a54d7698162.tar.gz openembedded-core-527437174bf74b2205dd5b48cbb64a54d7698162.tar.bz2 openembedded-core-527437174bf74b2205dd5b48cbb64a54d7698162.zip |
ltp/posix: replace CWD with PWD
Backport a patch to replace CWD with PWD to avoid
error messages in test results:
basename: missing operand
Try 'basename --help' for more information.
(From OE-Core rev: 8665ccb5c3cefca43898caea06198e79504fdeff)
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-extended/ltp/ltp/0038-run-posix-option-group-test-replace-CWD-qith-PWD.patch | 44 | ||||
-rw-r--r-- | meta/recipes-extended/ltp/ltp_20160126.bb | 1 |
2 files changed, 45 insertions, 0 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 new file mode 100644 index 0000000000..8034152fd7 --- /dev/null +++ b/meta/recipes-extended/ltp/ltp/0038-run-posix-option-group-test-replace-CWD-qith-PWD.patch @@ -0,0 +1,44 @@ +From f356775c400f40e3803d80a7bd295b4265959c45 Mon Sep 17 00:00:00 2001 +From: Vineet Gupta <Vineet.Gupta1@synopsys.com> +Date: Mon, 29 Feb 2016 14:34:40 +0530 +Subject: [PATCH] run-posix-option-group-test: replace CWD qith PWD + +When running LTP Open Posix Testsuite there is lot of messages as: + +| Usage: basename FILE [SUFFIX] +| +| Strip directory path and .SUFFIX from FILE +| +| ******************* +| Testing +| ******************* + +This is because there is no $CWD defined in shell and it looks like $PWD +was intended instead. + +Signed-off-by: Vineet Gupta <vgupta@synopsys.com> +Signed-off-by: Cyril Hrubis <chrubis@suse.cz> + +Upstream-Status: Backport + +Signed-off-by: Jackie Huang <jackie.huang@windriver.com> +--- + testcases/open_posix_testsuite/bin/run-tests.sh | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/testcases/open_posix_testsuite/bin/run-tests.sh b/testcases/open_posix_testsuite/bin/run-tests.sh +index d4bd988..5ee5687 100755 +--- a/testcases/open_posix_testsuite/bin/run-tests.sh ++++ b/testcases/open_posix_testsuite/bin/run-tests.sh +@@ -29,7 +29,7 @@ run_test_loop() { + + cat <<EOF + ******************* +-Testing $(basename $CWD) ++Testing $(basename $PWD) + ******************* + $(printf "PASS\t\t%3d" $NUM_PASS) + $(printf "FAIL\t\t%3d" $NUM_FAIL) +-- +2.7.4 + diff --git a/meta/recipes-extended/ltp/ltp_20160126.bb b/meta/recipes-extended/ltp/ltp_20160126.bb index 841302b0ad..6e2ceac0e2 100644 --- a/meta/recipes-extended/ltp/ltp_20160126.bb +++ b/meta/recipes-extended/ltp/ltp_20160126.bb @@ -64,6 +64,7 @@ SRC_URI = "git://github.com/linux-test-project/ltp.git \ file://0035-fix-test_proc_kill-hang.patch \ file://0036-testcases-network-nfsv4-acl-acl1.c-Security-fix-on-s.patch \ file://0037-containers-netns_netlink-Avoid-segmentation-fault.patch \ + file://0038-run-posix-option-group-test-replace-CWD-qith-PWD.patch \ " S = "${WORKDIR}/git" |