mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 12:59:02 +02:00

(From OE-Core rev: 8df27ff912a25077222a02d2ca9d1252f1f15c26) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
64 lines
1.6 KiB
Diff
64 lines
1.6 KiB
Diff
From 29f811d9d381f2ab54b3c8cef77334e32970ef09 Mon Sep 17 00:00:00 2001
|
|
From: Li xin <lixin.fnst@cn.fujitsu.com>
|
|
Date: Tue, 21 Jul 2015 02:01:22 +0900
|
|
Subject: [PATCH] Fix the test output format
|
|
|
|
Upstream-Status: Inappropriate [needs a Makefile fix: regress/regress2 should be part of 'make check' rather than 'make test']
|
|
|
|
Signed-off-by: Roy Li <rongqing.li@windriver.com>
|
|
Signed-off-by: Li Xin <lixin.fnst@cn.fujitsu.com>
|
|
Signed-off-by: Xiangyu Chen <xiangyu.chen@windriver.com>
|
|
|
|
---
|
|
test/regress | 6 +++---
|
|
test/regress2 | 11 +++++------
|
|
2 files changed, 8 insertions(+), 9 deletions(-)
|
|
|
|
diff --git a/test/regress b/test/regress
|
|
index f06b22f..2fdfacb 100755
|
|
--- a/test/regress
|
|
+++ b/test/regress
|
|
@@ -78,6 +78,7 @@ probe_hardware()
|
|
if [ $numnodes -lt 2 ] ; then
|
|
echo "need at least two nodes with at least $NEEDPAGES each of"
|
|
echo "free memory for mempolicy regression tests"
|
|
+ echo "SKIP: numa regress"
|
|
exit 77 # Skip test
|
|
fi
|
|
}
|
|
@@ -209,10 +210,9 @@ main()
|
|
rm A B
|
|
|
|
if [ "$EXIT" = 0 ] ; then
|
|
- echo '========SUCCESS'
|
|
+ echo 'PASS: numactl regress'
|
|
else
|
|
- echo '========FAILURE'
|
|
- exit 1
|
|
+ echo 'FAIL: numactl regress'
|
|
fi
|
|
}
|
|
|
|
diff --git a/test/regress2 b/test/regress2
|
|
index aa6ea41..450c510 100755
|
|
--- a/test/regress2
|
|
+++ b/test/regress2
|
|
@@ -9,12 +9,11 @@ testdir=`dirname "$0"`
|
|
export PATH=${builddir}:$PATH
|
|
|
|
T() {
|
|
- echo "$@"
|
|
- if ! $VALGRIND "$@" ; then
|
|
- echo $1 FAILED!!!!
|
|
- exit 1
|
|
- fi
|
|
- echo
|
|
+ if ! $VALGRIND "$@" 2>&1 1>/dev/null; then
|
|
+ echo "FAIL: $1"
|
|
+ else
|
|
+ echo "PASS: $1"
|
|
+ fi
|
|
}
|
|
|
|
# still broken
|