All of lore.kernel.org
 help / color / mirror / Atom feed
* [LTP] [PATCH] smt_smp: Return TCONF if SMT/SMP is not supported
@ 2009-09-15 15:30 Geert Uytterhoeven
  2009-09-16 15:17 ` Subrata Modak
  0 siblings, 1 reply; 2+ messages in thread
From: Geert Uytterhoeven @ 2009-09-15 15:30 UTC (permalink / raw)
  To: Linux Test Project

Currently the tests just fails if SMT/SMP is not supported.

Signed-off-by: Geert Uytterhoeven <Geert.Uytterhoeven@sonycom.com>
---
 .../hyperthreading/ht_affinity/smt_smp_affinity.sh |    3 +--
 .../hyperthreading/ht_enabled/smt_smp_enabled.sh   |    3 +--
 2 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/testcases/kernel/sched/hyperthreading/ht_affinity/smt_smp_affinity.sh b/testcases/kernel/sched/hyperthreading/ht_affinity/smt_smp_affinity.sh
index 109800d..0a33f51 100755
--- a/testcases/kernel/sched/hyperthreading/ht_affinity/smt_smp_affinity.sh
+++ b/testcases/kernel/sched/hyperthreading/ht_affinity/smt_smp_affinity.sh
@@ -44,8 +44,7 @@ if [ -f ./ht_enabled ];then
 	if [ $ret_value -ne 0 ];then
 		tst_resm TCONF "SMT/SMP is not supported"
 		tst_resm TINFO "End: SMT/SMP Affinity"
-		TFAILCNT=$(( $TFAILCNT+1 ))
-		exit $TFAILCNT
+		exit 0
 	fi
 else
 	tst_resm TBROK "ht_enabled:File not found"
diff --git a/testcases/kernel/sched/hyperthreading/ht_enabled/smt_smp_enabled.sh b/testcases/kernel/sched/hyperthreading/ht_enabled/smt_smp_enabled.sh
index 8b8a909..e234ea4 100755
--- a/testcases/kernel/sched/hyperthreading/ht_enabled/smt_smp_enabled.sh
+++ b/testcases/kernel/sched/hyperthreading/ht_enabled/smt_smp_enabled.sh
@@ -41,8 +41,7 @@ if [ -f ./ht_enabled ];then
 	if [ $ret_value -ne 0 ];then
 		tst_resm TCONF "SMT/SMP is not supported"
 		tst_resm TINFO "End: SMT/SMP Enabled"
-		TFAILCNT=$(( $TFAILCNT+1 ))
-		exit $TFAILCNT
+		exit 0
 	fi
 else
 	tst_resm TBROK "ht_enabled:File not found"
-- 
1.6.2.4

With kind regards,

Geert Uytterhoeven
Software Architect
Techsoft Centre

Technology and Software Centre Europe
The Corporate Village · Da Vincilaan 7-D1 · B-1935 Zaventem · Belgium

Phone:    +32 (0)2 700 8453
Fax:      +32 (0)2 700 8622
E-mail:   Geert.Uytterhoeven@sonycom.com
Internet: http://www.sony-europe.com/

A division of Sony Europe (Belgium) N.V.
VAT BE 0413.825.160 · RPR Brussels
Fortis · BIC GEBABEBB · IBAN BE41293037680010

------------------------------------------------------------------------------
Come build with us! The BlackBerry&reg; Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9&#45;12, 2009. Register now&#33;
http://p.sf.net/sfu/devconf
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list

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

* Re: [LTP] [PATCH] smt_smp: Return TCONF if SMT/SMP is not supported
  2009-09-15 15:30 [LTP] [PATCH] smt_smp: Return TCONF if SMT/SMP is not supported Geert Uytterhoeven
@ 2009-09-16 15:17 ` Subrata Modak
  0 siblings, 0 replies; 2+ messages in thread
From: Subrata Modak @ 2009-09-16 15:17 UTC (permalink / raw)
  To: Geert Uytterhoeven; +Cc: Linux Test Project

On Tue, 2009-09-15 at 17:30 +0200, Geert Uytterhoeven wrote: 
> Currently the tests just fails if SMT/SMP is not supported.
> 
> Signed-off-by: Geert Uytterhoeven <Geert.Uytterhoeven@sonycom.com>

Thanks.

Regards--
Subrata

> ---
>  .../hyperthreading/ht_affinity/smt_smp_affinity.sh |    3 +--
>  .../hyperthreading/ht_enabled/smt_smp_enabled.sh   |    3 +--
>  2 files changed, 2 insertions(+), 4 deletions(-)
> 
> diff --git a/testcases/kernel/sched/hyperthreading/ht_affinity/smt_smp_affinity.sh b/testcases/kernel/sched/hyperthreading/ht_affinity/smt_smp_affinity.sh
> index 109800d..0a33f51 100755
> --- a/testcases/kernel/sched/hyperthreading/ht_affinity/smt_smp_affinity.sh
> +++ b/testcases/kernel/sched/hyperthreading/ht_affinity/smt_smp_affinity.sh
> @@ -44,8 +44,7 @@ if [ -f ./ht_enabled ];then
>  	if [ $ret_value -ne 0 ];then
>  		tst_resm TCONF "SMT/SMP is not supported"
>  		tst_resm TINFO "End: SMT/SMP Affinity"
> -		TFAILCNT=$(( $TFAILCNT+1 ))
> -		exit $TFAILCNT
> +		exit 0
>  	fi
>  else
>  	tst_resm TBROK "ht_enabled:File not found"
> diff --git a/testcases/kernel/sched/hyperthreading/ht_enabled/smt_smp_enabled.sh b/testcases/kernel/sched/hyperthreading/ht_enabled/smt_smp_enabled.sh
> index 8b8a909..e234ea4 100755
> --- a/testcases/kernel/sched/hyperthreading/ht_enabled/smt_smp_enabled.sh
> +++ b/testcases/kernel/sched/hyperthreading/ht_enabled/smt_smp_enabled.sh
> @@ -41,8 +41,7 @@ if [ -f ./ht_enabled ];then
>  	if [ $ret_value -ne 0 ];then
>  		tst_resm TCONF "SMT/SMP is not supported"
>  		tst_resm TINFO "End: SMT/SMP Enabled"
> -		TFAILCNT=$(( $TFAILCNT+1 ))
> -		exit $TFAILCNT
> +		exit 0
>  	fi
>  else
>  	tst_resm TBROK "ht_enabled:File not found"


------------------------------------------------------------------------------
Come build with us! The BlackBerry&reg; Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9&#45;12, 2009. Register now&#33;
http://p.sf.net/sfu/devconf
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list

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

end of thread, other threads:[~2009-09-16 15:18 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-09-15 15:30 [LTP] [PATCH] smt_smp: Return TCONF if SMT/SMP is not supported Geert Uytterhoeven
2009-09-16 15:17 ` Subrata Modak

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.