public inbox for ltp@lists.linux.it
 help / color / mirror / Atom feed
* [LTP] Add test path for cpuhotplug test
@ 2012-07-04  7:53 Jin Li
  2012-07-04  7:53 ` [LTP] [PATCH] Add test case path in testcases/kernel/hotplug/cpu_hotplug/runtests.sh Jin Li
  0 siblings, 1 reply; 3+ messages in thread
From: Jin Li @ 2012-07-04  7:53 UTC (permalink / raw)
  To: jin.li, ltp-list

Hi,

Fail to invoke cpuhotplug test via 

./runltp -f cpuhotplug

<<<test_output>>>
incrementing stop
CPU:        1
LOOPS:      1
LHCS_PATH:  /opt/ltp/testcases/bin/cpu_hotplug
/opt/ltp/testcases/bin/cpu_hotplug/runtests.sh: line 15: functional/hotplug??.sh: No such file or directory

Add test path for runtests.sh

Regards,

Jin

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list

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

* [LTP] [PATCH] Add test case path in testcases/kernel/hotplug/cpu_hotplug/runtests.sh
  2012-07-04  7:53 [LTP] Add test path for cpuhotplug test Jin Li
@ 2012-07-04  7:53 ` Jin Li
  2012-07-09  2:56   ` Wanlong Gao
  0 siblings, 1 reply; 3+ messages in thread
From: Jin Li @ 2012-07-04  7:53 UTC (permalink / raw)
  To: jin.li, ltp-list

Fail to invoke cpuhotplug via:

./runltp -f cpuhotplug

<<<test_output>>>
incrementing stop
CPU:        1
LOOPS:      1
LHCS_PATH:  /opt/ltp/testcases/bin/cpu_hotplug
/opt/ltp/testcases/bin/cpu_hotplug/runtests.sh: line 15: functional/hotplug??.sh: No such file or directory

Signed-off-by: Jin Li <jin.li@windriver.com>
---
 testcases/kernel/hotplug/cpu_hotplug/runtests.sh |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/testcases/kernel/hotplug/cpu_hotplug/runtests.sh b/testcases/kernel/hotplug/cpu_hotplug/runtests.sh
index 2803508..1943f83 100755
--- a/testcases/kernel/hotplug/cpu_hotplug/runtests.sh
+++ b/testcases/kernel/hotplug/cpu_hotplug/runtests.sh
@@ -11,6 +11,6 @@ echo "LOOPS:      $LOOPS"
 echo "LHCS_PATH:  $LHCS_PATH"
 
 
-for case in functional/hotplug??.sh; do
+for case in $LHCS_PATH/functional/hotplug??.sh; do
 	$case $CPU_TO_TEST
 done
-- 
1.6.0.4


------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list

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

* Re: [LTP] [PATCH] Add test case path in testcases/kernel/hotplug/cpu_hotplug/runtests.sh
  2012-07-04  7:53 ` [LTP] [PATCH] Add test case path in testcases/kernel/hotplug/cpu_hotplug/runtests.sh Jin Li
@ 2012-07-09  2:56   ` Wanlong Gao
  0 siblings, 0 replies; 3+ messages in thread
From: Wanlong Gao @ 2012-07-09  2:56 UTC (permalink / raw)
  To: Jin Li; +Cc: ltp-list

On 07/04/2012 03:53 PM, Jin Li wrote:
> Fail to invoke cpuhotplug via:
> 
> ./runltp -f cpuhotplug
> 
> <<<test_output>>>
> incrementing stop
> CPU:        1
> LOOPS:      1
> LHCS_PATH:  /opt/ltp/testcases/bin/cpu_hotplug
> /opt/ltp/testcases/bin/cpu_hotplug/runtests.sh: line 15: functional/hotplug??.sh: No such file or directory
> 

pushed, thank you.

Wanlong Gao

> Signed-off-by: Jin Li <jin.li@windriver.com>
> ---
>  testcases/kernel/hotplug/cpu_hotplug/runtests.sh |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/testcases/kernel/hotplug/cpu_hotplug/runtests.sh b/testcases/kernel/hotplug/cpu_hotplug/runtests.sh
> index 2803508..1943f83 100755
> --- a/testcases/kernel/hotplug/cpu_hotplug/runtests.sh
> +++ b/testcases/kernel/hotplug/cpu_hotplug/runtests.sh
> @@ -11,6 +11,6 @@ echo "LOOPS:      $LOOPS"
>  echo "LHCS_PATH:  $LHCS_PATH"
>  
>  
> -for case in functional/hotplug??.sh; do
> +for case in $LHCS_PATH/functional/hotplug??.sh; do
>  	$case $CPU_TO_TEST
>  done
> 



------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list

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

end of thread, other threads:[~2012-07-09  2:57 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-04  7:53 [LTP] Add test path for cpuhotplug test Jin Li
2012-07-04  7:53 ` [LTP] [PATCH] Add test case path in testcases/kernel/hotplug/cpu_hotplug/runtests.sh Jin Li
2012-07-09  2:56   ` Wanlong Gao

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox