Hi Garrett, Garrett Cooper said the following on 2011-2-23 15:48: > $ find [cms]* -name '*.sh' | xargs grep -l buildonly | xargs -J % sed > -i .bk -E -e 's,^[cfs].+[^/]/(.+)\.test,\./\1,g' -e > 's,\-buildonly\.test,,g' % > > I've committed the end result after verifying that git diff's output was sane. >
There are four cases, and they have same problem. The following patch can fix the bug. Signed-off-by: Peng Haitao <[email protected]> --- .../conformance/interfaces/sigaddset/4-1.sh | 2 +- .../conformance/interfaces/sigaddset/4-2.sh | 2 +- .../conformance/interfaces/sigaddset/4-3.sh | 2 +- .../conformance/interfaces/sigaddset/4-4.sh | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/testcases/open_posix_testsuite/conformance/interfaces/sigaddset/4-1.sh b/testcases/open_posix_testsuite/conformance/interfaces/sigaddset/4-1.sh index cb29ca9..32dc8a9 100755 --- a/testcases/open_posix_testsuite/conformance/interfaces/sigaddset/4-1.sh +++ b/testcases/open_posix_testsuite/conformance/interfaces/sigaddset/4-1.sh @@ -9,4 +9,4 @@ # Test various methods of adding invalid signals to sigaddset(). # -conformance/interfaces/sigaddset/4-core.run-test 1 +./4-core 1 diff --git a/testcases/open_posix_testsuite/conformance/interfaces/sigaddset/4-2.sh b/testcases/open_posix_testsuite/conformance/interfaces/sigaddset/4-2.sh index 5ab480d..708fe1a 100755 --- a/testcases/open_posix_testsuite/conformance/interfaces/sigaddset/4-2.sh +++ b/testcases/open_posix_testsuite/conformance/interfaces/sigaddset/4-2.sh @@ -10,4 +10,4 @@ # Test various methods of adding invalid signals to sigaddset(). # -conformance/interfaces/sigaddset/4-core.run-test 2 +./4-core 2 diff --git a/testcases/open_posix_testsuite/conformance/interfaces/sigaddset/4-3.sh b/testcases/open_posix_testsuite/conformance/interfaces/sigaddset/4-3.sh index 644512f..ad4fee1 100755 --- a/testcases/open_posix_testsuite/conformance/interfaces/sigaddset/4-3.sh +++ b/testcases/open_posix_testsuite/conformance/interfaces/sigaddset/4-3.sh @@ -9,4 +9,4 @@ # Test various methods of adding invalid signals to sigaddset(). # -conformance/interfaces/sigaddset/4-core.run-test 3 +./4-core 3 diff --git a/testcases/open_posix_testsuite/conformance/interfaces/sigaddset/4-4.sh b/testcases/open_posix_testsuite/conformance/interfaces/sigaddset/4-4.sh index ca8523f..c33d8fb 100755 --- a/testcases/open_posix_testsuite/conformance/interfaces/sigaddset/4-4.sh +++ b/testcases/open_posix_testsuite/conformance/interfaces/sigaddset/4-4.sh @@ -9,4 +9,4 @@ # Test various methods of adding invalid signals to sigaddset(). # -conformance/interfaces/sigaddset/4-core.run-test 4 +./4-core 4 -- 1.7.1 -- Best Regards, Peng Haitao ------------------------------------------------------------------------------ Free Software Download: Index, Search & Analyze Logs and other IT data in Real-Time with Splunk. Collect, index and harness all the fast moving IT data generated by your applications, servers and devices whether physical, virtual or in the cloud. Deliver compliance at lower cost and gain new business insights. http://p.sf.net/sfu/splunk-dev2dev _______________________________________________ Ltp-list mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ltp-list
