* [LTP] [PATCH 2/2] Added check for memory controller ( functional, regression & stress )
@ 2009-12-28 10:46 Rishikesh
2009-12-29 9:20 ` Li Zefan
0 siblings, 1 reply; 7+ messages in thread
From: Rishikesh @ 2009-12-28 10:46 UTC (permalink / raw)
To: LTP; +Cc: risrajak, iranna.ankad
[-- Attachment #1: Type: text/plain, Size: 1 bytes --]
[-- Attachment #2: ltp-mem-enable2.patch --]
[-- Type: text/plain, Size: 2538 bytes --]
commit fe4599d210be37a7d1bb2d6a5523b9e29bbd87e1
Author: Rishikesh K Rajak <rishikesh@rishikesh.in.ibm.com>
Date: Mon Dec 28 15:11:54 2009 +0530
Added check for regression and funcitonal memcg test
diff --git a/testcases/kernel/controllers/memcg/functional/memcg_function_test.sh b/testcases/kernel/controllers/memcg/functional/memcg_function_test.sh
index 003af1c..303661c 100755
--- a/testcases/kernel/controllers/memcg/functional/memcg_function_test.sh
+++ b/testcases/kernel/controllers/memcg/functional/memcg_function_test.sh
@@ -28,8 +28,8 @@ export TCID="memcg_function_test"
export TST_TOTAL=38
export TST_COUNT=0
-grep -w memory /proc/cgroups 2>&1 > /dev/null
-if [ $? -ne 0 ]; then
+if [ `grep -w memory /proc/cgroups | cut -f4` == 0 ]
+then
echo "WARNING:";
echo "Kernel does not support for memory resource controller";
echo "Skipping all memcgroup testcases....";
diff --git a/testcases/kernel/controllers/memcg/regression/memcg_regression_test.sh b/testcases/kernel/controllers/memcg/regression/memcg_regression_test.sh
index 6bf7c88..0bc3d75 100755
--- a/testcases/kernel/controllers/memcg/regression/memcg_regression_test.sh
+++ b/testcases/kernel/controllers/memcg/regression/memcg_regression_test.sh
@@ -33,6 +33,15 @@ if [ "$USER" != root ]; then
exit 0
fi
+if [ `grep -w memory /proc/cgroups | cut -f4` == 0 ]
+then
+ echo "WARNING:";
+ echo "Kernel does not support for memory resource controller";
+ echo "Skipping all memcgroup testcases....";
+ exit 0
+fi
+
+
tst_kvercmp 2 6 30
if [ $? -eq 0 ]; then
tst_brkm TBROK ignored "Test should be run with kernel 2.6.30 or newer"
diff --git a/testcases/kernel/controllers/memcg/stress/memcg_stress_test.sh b/testcases/kernel/controllers/memcg/stress/memcg_stress_test.sh
index 7244a16..c155bf1 100755
--- a/testcases/kernel/controllers/memcg/stress/memcg_stress_test.sh
+++ b/testcases/kernel/controllers/memcg/stress/memcg_stress_test.sh
@@ -28,14 +28,15 @@ export TCID="memcg_stress_test"
export TST_TOTAL=2
export TST_COUNT=0
-grep -w memory /proc/cgroups 2>&1 > /dev/null
-if [ $? -ne 0 ]; then
- echo "WARNING:";
- echo "Kernel does not support for memory resource controller";
- echo "Skipping all memcgroup testcases....";
- exit 0
+if [ `grep -w memory /proc/cgroups | cut -f4` == 0 ]
+then
+ echo "WARNING:";
+ echo "Kernel does not support for memory resource controller";
+ echo "Skipping all memcgroup testcases....";
+ exit 0
fi
+
RUN_TIME=$(( 60 * 60 ))
cleanup()
[-- Attachment #3: Type: text/plain, Size: 390 bytes --]
------------------------------------------------------------------------------
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev
[-- Attachment #4: Type: text/plain, Size: 155 bytes --]
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [LTP] [PATCH 2/2] Added check for memory controller ( functional, regression & stress )
2009-12-28 10:46 [LTP] [PATCH 2/2] Added check for memory controller ( functional, regression & stress ) Rishikesh
@ 2009-12-29 9:20 ` Li Zefan
2009-12-29 10:03 ` Rishikesh
2009-12-30 4:00 ` Rishikesh
0 siblings, 2 replies; 7+ messages in thread
From: Li Zefan @ 2009-12-29 9:20 UTC (permalink / raw)
To: Rishikesh; +Cc: risrajak, LTP, iranna.ankad
> commit fe4599d210be37a7d1bb2d6a5523b9e29bbd87e1
> Author: Rishikesh K Rajak <rishikesh@rishikesh.in.ibm.com>
> Date: Mon Dec 28 15:11:54 2009 +0530
>
> Added check for regression and funcitonal memcg test
>
You should add your Signed-off-by.
> diff --git a/testcases/kernel/controllers/memcg/functional/memcg_function_test.sh b/testcases/kernel/controllers/memcg/functional/memcg_function_test.sh
> index 003af1c..303661c 100755
> --- a/testcases/kernel/controllers/memcg/functional/memcg_function_test.sh
> +++ b/testcases/kernel/controllers/memcg/functional/memcg_function_test.sh
> @@ -28,8 +28,8 @@ export TCID="memcg_function_test"
> export TST_TOTAL=38
> export TST_COUNT=0
>
> -grep -w memory /proc/cgroups 2>&1 > /dev/null
> -if [ $? -ne 0 ]; then
> +if [ `grep -w memory /proc/cgroups | cut -f4` == 0 ]
What if memory cgroup is not compiled? So the correct check should be:
if [ ! "grep -w memory /proc/cgroups | cut -f4" == "1" ]
then
...
fi
> +then
> echo "WARNING:";
> echo "Kernel does not support for memory resource controller";
> echo "Skipping all memcgroup testcases....";
> diff --git a/testcases/kernel/controllers/memcg/regression/memcg_regression_test.sh b/testcases/kernel/controllers/memcg/regression/memcg_regression_test.sh
> index 6bf7c88..0bc3d75 100755
> --- a/testcases/kernel/controllers/memcg/regression/memcg_regression_test.sh
> +++ b/testcases/kernel/controllers/memcg/regression/memcg_regression_test.sh
> @@ -33,6 +33,15 @@ if [ "$USER" != root ]; then
> exit 0
> fi
>
> +if [ `grep -w memory /proc/cgroups | cut -f4` == 0 ]
> +then
> + echo "WARNING:";
> + echo "Kernel does not support for memory resource controller";
> + echo "Skipping all memcgroup testcases....";
> + exit 0
> +fi
ditto
> +
> +
> tst_kvercmp 2 6 30
> if [ $? -eq 0 ]; then
> tst_brkm TBROK ignored "Test should be run with kernel 2.6.30 or newer"
> diff --git a/testcases/kernel/controllers/memcg/stress/memcg_stress_test.sh b/testcases/kernel/controllers/memcg/stress/memcg_stress_test.sh
> index 7244a16..c155bf1 100755
> --- a/testcases/kernel/controllers/memcg/stress/memcg_stress_test.sh
> +++ b/testcases/kernel/controllers/memcg/stress/memcg_stress_test.sh
> @@ -28,14 +28,15 @@ export TCID="memcg_stress_test"
> export TST_TOTAL=2
> export TST_COUNT=0
>
> -grep -w memory /proc/cgroups 2>&1 > /dev/null
> -if [ $? -ne 0 ]; then
> - echo "WARNING:";
> - echo "Kernel does not support for memory resource controller";
> - echo "Skipping all memcgroup testcases....";
> - exit 0
> +if [ `grep -w memory /proc/cgroups | cut -f4` == 0 ]
> +then
> + echo "WARNING:";
> + echo "Kernel does not support for memory resource controller";
> + echo "Skipping all memcgroup testcases....";
> + exit 0
> fi
ditto
>
> +
> RUN_TIME=$(( 60 * 60 ))
>
> cleanup()
------------------------------------------------------------------------------
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [LTP] [PATCH 2/2] Added check for memory controller ( functional, regression & stress )
2009-12-29 9:20 ` Li Zefan
@ 2009-12-29 10:03 ` Rishikesh
2009-12-30 4:00 ` Rishikesh
1 sibling, 0 replies; 7+ messages in thread
From: Rishikesh @ 2009-12-29 10:03 UTC (permalink / raw)
To: Li Zefan; +Cc: risrajak, LTP, iranna.ankad
On 12/29/2009 02:50 PM, Li Zefan wrote:
>> commit fe4599d210be37a7d1bb2d6a5523b9e29bbd87e1
>> Author: Rishikesh K Rajak<rishikesh@rishikesh.in.ibm.com>
>> Date: Mon Dec 28 15:11:54 2009 +0530
>>
>> Added check for regression and funcitonal memcg test
>>
>>
> You should add your Signed-off-by.
>
Hi Li,
Thanks for your review comment. Will definitely incorporate your review
comment and resend the patch again.
-Rishi
>
>> diff --git a/testcases/kernel/controllers/memcg/functional/memcg_function_test.sh b/testcases/kernel/controllers/memcg/functional/memcg_function_test.sh
>> index 003af1c..303661c 100755
>> --- a/testcases/kernel/controllers/memcg/functional/memcg_function_test.sh
>> +++ b/testcases/kernel/controllers/memcg/functional/memcg_function_test.sh
>> @@ -28,8 +28,8 @@ export TCID="memcg_function_test"
>> export TST_TOTAL=38
>> export TST_COUNT=0
>>
>> -grep -w memory /proc/cgroups 2>&1> /dev/null
>> -if [ $? -ne 0 ]; then
>> +if [ `grep -w memory /proc/cgroups | cut -f4` == 0 ]
>>
> What if memory cgroup is not compiled? So the correct check should be:
>
> if [ ! "grep -w memory /proc/cgroups | cut -f4" == "1" ]
> then
> ...
> fi
>
>
>> +then
>> echo "WARNING:";
>> echo "Kernel does not support for memory resource controller";
>> echo "Skipping all memcgroup testcases....";
>> diff --git a/testcases/kernel/controllers/memcg/regression/memcg_regression_test.sh b/testcases/kernel/controllers/memcg/regression/memcg_regression_test.sh
>> index 6bf7c88..0bc3d75 100755
>> --- a/testcases/kernel/controllers/memcg/regression/memcg_regression_test.sh
>> +++ b/testcases/kernel/controllers/memcg/regression/memcg_regression_test.sh
>> @@ -33,6 +33,15 @@ if [ "$USER" != root ]; then
>> exit 0
>> fi
>>
>> +if [ `grep -w memory /proc/cgroups | cut -f4` == 0 ]
>> +then
>> + echo "WARNING:";
>> + echo "Kernel does not support for memory resource controller";
>> + echo "Skipping all memcgroup testcases....";
>> + exit 0
>> +fi
>>
> ditto
>
>
>> +
>> +
>> tst_kvercmp 2 6 30
>> if [ $? -eq 0 ]; then
>> tst_brkm TBROK ignored "Test should be run with kernel 2.6.30 or newer"
>> diff --git a/testcases/kernel/controllers/memcg/stress/memcg_stress_test.sh b/testcases/kernel/controllers/memcg/stress/memcg_stress_test.sh
>> index 7244a16..c155bf1 100755
>> --- a/testcases/kernel/controllers/memcg/stress/memcg_stress_test.sh
>> +++ b/testcases/kernel/controllers/memcg/stress/memcg_stress_test.sh
>> @@ -28,14 +28,15 @@ export TCID="memcg_stress_test"
>> export TST_TOTAL=2
>> export TST_COUNT=0
>>
>> -grep -w memory /proc/cgroups 2>&1> /dev/null
>> -if [ $? -ne 0 ]; then
>> - echo "WARNING:";
>> - echo "Kernel does not support for memory resource controller";
>> - echo "Skipping all memcgroup testcases....";
>> - exit 0
>> +if [ `grep -w memory /proc/cgroups | cut -f4` == 0 ]
>> +then
>> + echo "WARNING:";
>> + echo "Kernel does not support for memory resource controller";
>> + echo "Skipping all memcgroup testcases....";
>> + exit 0
>> fi
>>
> ditto
>
>
>>
>> +
>> RUN_TIME=$(( 60 * 60 ))
>>
>> cleanup()
>>
>
------------------------------------------------------------------------------
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [LTP] [PATCH 2/2] Added check for memory controller ( functional, regression & stress )
2009-12-29 9:20 ` Li Zefan
2009-12-29 10:03 ` Rishikesh
@ 2009-12-30 4:00 ` Rishikesh
2009-12-30 5:21 ` Li Zefan
1 sibling, 1 reply; 7+ messages in thread
From: Rishikesh @ 2009-12-30 4:00 UTC (permalink / raw)
To: Li Zefan; +Cc: risrajak, LTP, iranna.ankad
[-- Attachment #1: Type: text/plain, Size: 445 bytes --]
On 12/29/2009 02:50 PM, Li Zefan wrote:
>> commit fe4599d210be37a7d1bb2d6a5523b9e29bbd87e1
>> Author: Rishikesh K Rajak<rishikesh@rishikesh.in.ibm.com>
>> Date: Mon Dec 28 15:11:54 2009 +0530
>>
>> Added check for regression and funcitonal memcg test
>>
>>
> You should add your Signed-off-by.
>
Sending a fresh patch with signed-off added. Also combined both the
patches in one & ported to latest intermediate ltp release.
[-- Attachment #2: memcg-enbale-disable.patch --]
[-- Type: text/plain, Size: 9926 bytes --]
Description:
The current implementation of memory controller in ltp checks only
for kernel support, this patch check for memcg functionality enable or
disable through /proc/cgroups.
Signed-off By : Rishikesh K Rajak <risrajak@linux.vnet.ibm.com>
---
Index: ltp-intermediate-20091209.orig/testcases/kernel/controllers/memcg/functional/memcg_function_test.sh
===================================================================
--- ltp-intermediate-20091209.orig.orig/testcases/kernel/controllers/memcg/functional/memcg_function_test.sh 2009-12-09 13:18:49.000000000 +0530
+++ ltp-intermediate-20091209.orig/testcases/kernel/controllers/memcg/functional/memcg_function_test.sh 2009-12-30 09:24:48.000000000 +0530
@@ -20,6 +20,8 @@
## ##
## Author: Li Zefan <lizf@cn.fujitsu.com> ##
## Restructure for LTP: Shi Weihua <shiwh@cn.fujitsu.com> ##
+## Added memcg enable/disable functinality: Rishikesh K Rajak ##
+## <risrajak@linux.vnet.ibm.com ##
## ##
################################################################################
@@ -28,14 +30,15 @@
export TST_TOTAL=38
export TST_COUNT=0
-grep -w memory /proc/cgroups 2>&1 > /dev/null
-if [ $? -ne 0 ]; then
- echo "WARNING:";
- echo "Kernel does not support for memory resource controller";
- echo "Skipping all memcgroup testcases....";
- exit 0
+if [ ! "grep -w memory /proc/cgroups | cut -f4" == "1" ]
+then
+ echo "WARNING:";
+ echo "Either Kernel does not support for memory resource controller or feature not enabled";
+ echo "Skipping all memcgroup testcases....";
+ exit 0
fi
+
TEST_PATH=$PWD
PASS=0
Index: ltp-intermediate-20091209.orig/testcases/kernel/controllers/memcg/regression/memcg_regression_test.sh
===================================================================
--- ltp-intermediate-20091209.orig.orig/testcases/kernel/controllers/memcg/regression/memcg_regression_test.sh 2009-12-09 13:18:50.000000000 +0530
+++ ltp-intermediate-20091209.orig/testcases/kernel/controllers/memcg/regression/memcg_regression_test.sh 2009-12-30 09:21:40.000000000 +0530
@@ -19,6 +19,8 @@
## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ##
## ##
## Author: Li Zefan <lizf@cn.fujitsu.com> ##
+## Added memcg enable/disable functinality: Rishikesh K Rajak ##
+## <risrajak@linux.vnet.ibm.com ##
## ##
################################################################################
@@ -33,6 +35,14 @@
exit 0
fi
+if [ ! "grep -w memory /proc/cgroups | cut -f4" == "1" ]
+then
+ echo "WARNING:";
+ echo "Either Kernel does not support for memory resource controller or feature not enabled";
+ echo "Skipping all memcgroup testcases....";
+ exit 0
+fi
+
tst_kvercmp 2 6 30
if [ $? -eq 0 ]; then
tst_brkm TBROK ignored "Test should be run with kernel 2.6.30 or newer"
Index: ltp-intermediate-20091209.orig/testcases/kernel/controllers/memcg/stress/memcg_stress_test.sh
===================================================================
--- ltp-intermediate-20091209.orig.orig/testcases/kernel/controllers/memcg/stress/memcg_stress_test.sh 2009-12-09 13:18:49.000000000 +0530
+++ ltp-intermediate-20091209.orig/testcases/kernel/controllers/memcg/stress/memcg_stress_test.sh 2009-12-30 09:21:51.000000000 +0530
@@ -20,6 +20,8 @@
## ##
## Author: Li Zefan <lizf@cn.fujitsu.com> ##
## Restructure for LTP: Shi Weihua <shiwh@cn.fujitsu.com> ##
+## Added memcg enable/disable functinality: Rishikesh K Rajak ##
+## <risrajak@linux.vnet.ibm.com ##
## ##
################################################################################
@@ -28,12 +30,12 @@
export TST_TOTAL=2
export TST_COUNT=0
-grep -w memory /proc/cgroups 2>&1 > /dev/null
-if [ $? -ne 0 ]; then
- echo "WARNING:";
- echo "Kernel does not support for memory resource controller";
- echo "Skipping all memcgroup testcases....";
- exit 0
+if [ ! "grep -w memory /proc/cgroups | cut -f4" == "1" ]
+then
+ echo "WARNING:";
+ echo "Either Kernel does not support for memory resource controller or feature not enabled";
+ echo "Skipping all memcgroup testcases....";
+ exit 0
fi
RUN_TIME=$(( 60 * 60 ))
Index: ltp-intermediate-20091209.orig/testcases/kernel/controllers/test_controllers.sh
===================================================================
--- ltp-intermediate-20091209.orig.orig/testcases/kernel/controllers/test_controllers.sh 2009-12-09 13:18:51.000000000 +0530
+++ ltp-intermediate-20091209.orig/testcases/kernel/controllers/test_controllers.sh 2009-12-30 09:23:32.000000000 +0530
@@ -33,19 +33,26 @@
# 20/12/07 Sudhir Kumar <sudhirkumarmalik@in.ibm.com> Created this test #
# 02/03/09 Miao Xie <miaox@cn.fujitsu.com> Add cpuset testset #
# 07/07/09 Shi Weihua <shiwh@cn.fujitsu.com> Add cpu testset of Fujitsu #
+# 30/12/09 Rishikesh <risrajak@linux.vnet.ibm.com> Added enable/disable #
# #
##################################################################################
if [ -f /proc/cgroups ]
then
CPU_CONTROLLER=`grep -w cpu /proc/cgroups | cut -f1`;
+ CPU_CONTROLLER_VALUE=`grep -w cpu /proc/cgroups | cut -f4`;
MEM_CONTROLLER=`grep -w memory /proc/cgroups | cut -f1`;
+ MEM_CONTROLLER_VALUE=`grep -w memory /proc/cgroups | cut -f4`;
IOTHROTTLE_CONTROLLER=`grep -w blockio /proc/cgroups | cut -f1`;
+ IOTHROTTLE_CONTROLLER_VALUE=`grep -w blockio /proc/cgroups | cut -f4`;
FREEZER=`grep -w freezer /proc/cgroups | cut -f1`;
+ FREEZER_VALUE=`grep -w freezer /proc/cgroups | cut -f4`;
CPUSET_CONTROLLER=`grep -w cpuset /proc/cgroups | cut -f1`
+ CPUSET_CONTROLLER_VALUE=`grep -w cpuset /proc/cgroups | cut -f4`
CPUACCOUNT_CONTROLLER=`grep -w cpuacct /proc/cgroups | cut -f1`
+ CPUACCOUNT_CONTROLLER_VALUE=`grep -w cpuacct /proc/cgroups | cut -f4`
- if [ "$CPU_CONTROLLER" = "cpu" ]
+ if [ "$CPU_CONTROLLER" = "cpu" ] && [ "$CPU_CONTROLLER_VALUE" = "1" ]
then
$LTPROOT/testcases/bin/run_cpuctl_test.sh 1;
$LTPROOT/testcases/bin/run_cpuctl_test.sh 3;
@@ -63,11 +70,11 @@
$LTPROOT/testcases/bin/run_cpuctl_test_fj.sh
else
echo "CONTROLLERS TESTCASES: WARNING";
- echo "Kernel does not support for cpu controller";
+ echo "Either Kernel does not support for cpu controller or functionality is not enabled";
echo "Skipping all cpu controller testcases....";
fi;
- if [ "$MEM_CONTROLLER" = "memory" ]
+ if [ "$MEM_CONTROLLER" = "memory" ] && [ "$MEM_CONTROLLER_VALUE" = "1" ]
then
$LTPROOT/testcases/bin/run_memctl_test.sh 1;
$LTPROOT/testcases/bin/run_memctl_test.sh 2;
@@ -75,28 +82,29 @@
$LTPROOT/testcases/bin/run_memctl_test.sh 4;
else
echo "CONTROLLERS TESTCASES: WARNING";
- echo "Kernel does not support for memory controller";
+ echo "Either Kernel does not support for memory controller or functionality is not enabled";
echo "Skipping all memory controller testcases....";
fi
- if [ "$IOTHROTTLE_CONTROLLER" = "blockio" ]
+ if [ "$IOTHROTTLE_CONTROLLER" = "blockio" ] && [ "$IOTHROTTLE_CONTROLLER_VALUE" = "1" ]
then
$LTPROOT/testcases/bin/run_io_throttle_test.sh;
else
echo "CONTROLLERS TESTCASES: WARNING";
- echo "Kernel does not support blockio controller";
+ echo "Either Kernel does not support for io controller or functionality is not enabled";
echo "Skipping all block device I/O throttling testcases....";
fi
- if [ "$FREEZER" = "freezer" ]
+ if [ "$FREEZER" = "freezer" ] && [ "$FREEZER_VALUE" = "1" ]
then
"$LTPROOT/testcases/bin/run_freezer.sh"
else
echo "CONTROLLERS TESTCASES: WARNING";
+ echo "Either Kernel does not support for freezer or functionality is not enabled";
echo "Kernel does not support freezer controller";
echo "Skipping all freezer testcases....";
fi
- if [ "$CPUSET_CONTROLLER" = "cpuset" ]
+ if [ "$CPUSET_CONTROLLER" = "cpuset" ] && [ "$CPUSET_CONTROLLER_VALUE" = "1" ]
then
$LTPROOT/testcases/bin/run_cpuset_test.sh 1;
$LTPROOT/testcases/bin/run_cpuset_test.sh 2;
@@ -111,21 +119,22 @@
$LTPROOT/testcases/bin/run_cpuset_test.sh 11;
else
echo "CONTROLLERS TESTCASES: WARNING";
- echo "Kernel does not support cpuset controller";
+ echo "Either Kernel does not support for cpuset controller or functionality is not enabled";
echo "Skipping all cpuset controller testcases....";
fi
- if [ "$CPUACCOUNT_CONTROLLER" = "cpuacct" ]
+ if [ "$CPUACCOUNT_CONTROLLER" = "cpuacct" ] && [ "$CPUACCOUNT_CONTROLLER_VALUE" = "1" ]
then
$LTPROOT/testcases/bin/run_cpuacct_test.sh 1;
$LTPROOT/testcases/bin/run_cpuacct_test.sh 2;
else
echo "Could not start cpu accounting controller test";
+ echo "Either Kernel does not support for cpu accounting controller or functionality is not enabled";
echo "usage: run_cpuacct_test.sh $TEST_NUM ";
echo "Skipping the cpu accounting controller test...";
fi
else
echo "CONTROLLERS TESTCASES: WARNING"
- echo "Kernel does not support for control groups";
+ echo "Kernel does not support any controller";
echo "Skipping all controllers testcases....";
fi
[-- Attachment #3: Type: text/plain, Size: 390 bytes --]
------------------------------------------------------------------------------
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev
[-- Attachment #4: Type: text/plain, Size: 155 bytes --]
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [LTP] [PATCH 2/2] Added check for memory controller ( functional, regression & stress )
2009-12-30 4:00 ` Rishikesh
@ 2009-12-30 5:21 ` Li Zefan
2010-01-07 10:46 ` Garrett Cooper
2010-01-07 11:06 ` Subrata Modak
0 siblings, 2 replies; 7+ messages in thread
From: Li Zefan @ 2009-12-30 5:21 UTC (permalink / raw)
To: Rishikesh; +Cc: risrajak, LTP, iranna.ankad
Rishikesh wrote:
> On 12/29/2009 02:50 PM, Li Zefan wrote:
>>> commit fe4599d210be37a7d1bb2d6a5523b9e29bbd87e1
>>> Author: Rishikesh K Rajak<rishikesh@rishikesh.in.ibm.com>
>>> Date: Mon Dec 28 15:11:54 2009 +0530
>>>
>>> Added check for regression and funcitonal memcg test
>>>
>>>
>> You should add your Signed-off-by.
>>
>
> Sending a fresh patch with signed-off added. Also combined both the
> patches in one & ported to latest intermediate ltp release.
>
Acked-by: Li Zefan <lizf@cn.fujitsu.com>
------------------------------------------------------------------------------
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [LTP] [PATCH 2/2] Added check for memory controller ( functional, regression & stress )
2009-12-30 5:21 ` Li Zefan
@ 2010-01-07 10:46 ` Garrett Cooper
2010-01-07 11:06 ` Subrata Modak
1 sibling, 0 replies; 7+ messages in thread
From: Garrett Cooper @ 2010-01-07 10:46 UTC (permalink / raw)
To: Li Zefan; +Cc: risrajak, LTP, iranna.ankad
On Tue, Dec 29, 2009 at 9:21 PM, Li Zefan <lizf@cn.fujitsu.com> wrote:
> Rishikesh wrote:
>> On 12/29/2009 02:50 PM, Li Zefan wrote:
>>>> commit fe4599d210be37a7d1bb2d6a5523b9e29bbd87e1
>>>> Author: Rishikesh K Rajak<rishikesh@rishikesh.in.ibm.com>
>>>> Date: Mon Dec 28 15:11:54 2009 +0530
>>>>
>>>> Added check for regression and funcitonal memcg test
>>>>
>>>>
>>> You should add your Signed-off-by.
>>>
>>
>> Sending a fresh patch with signed-off added. Also combined both the
>> patches in one & ported to latest intermediate ltp release.
>>
>
> Acked-by: Li Zefan <lizf@cn.fujitsu.com>
These checks are wrong for positive cases. Please do something
like the following (I committed it to the regression script as an
example):
! if [ ! "grep -w memory /proc/cgroups | cut -f4" == "1" ]
then
! echo "WARNING:";
! echo "Either Kernel does not support for memory resource
controller or feature not enabled";
! echo "Skipping all memcgroup testcases....";
exit 0
fi
--- 31,43 ----
export TST_COUNT=1
! if [ "$(id -ru)" != 0 ]; then
tst_brkm TBROK ignored "Test must be run as root"
exit 0
fi
! if [ "$(grep -w memory /proc/cgroups | cut -f4)" != "1" ]
then
! tst_resm TCONF "Either memory resource controller kernel support absent"
! tst_resm TCONF "or feature is not enabled; skipping all
memcgroup testcases."
exit 0
fi
Please ignore the id -ru noise.
Thanks,
-Garrett
------------------------------------------------------------------------------
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [LTP] [PATCH 2/2] Added check for memory controller ( functional, regression & stress )
2009-12-30 5:21 ` Li Zefan
2010-01-07 10:46 ` Garrett Cooper
@ 2010-01-07 11:06 ` Subrata Modak
1 sibling, 0 replies; 7+ messages in thread
From: Subrata Modak @ 2010-01-07 11:06 UTC (permalink / raw)
To: Rishikesh; +Cc: risrajak, LTP, iranna.ankad
On Wed, 2009-12-30 at 13:21 +0800, Li Zefan wrote:
> Rishikesh wrote:
> > On 12/29/2009 02:50 PM, Li Zefan wrote:
> >>> commit fe4599d210be37a7d1bb2d6a5523b9e29bbd87e1
> >>> Author: Rishikesh K Rajak<rishikesh@rishikesh.in.ibm.com>
> >>> Date: Mon Dec 28 15:11:54 2009 +0530
> >>>
> >>> Added check for regression and funcitonal memcg test
> >>>
> >>>
> >> You should add your Signed-off-by.
> >>
> >
> > Sending a fresh patch with signed-off added. Also combined both the
> > patches in one & ported to latest intermediate ltp release.
> >
>
> Acked-by: Li Zefan <lizf@cn.fujitsu.com>
Thanks to both of you.
Regards--
Subrata
------------------------------------------------------------------------------
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2010-01-07 11:06 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-12-28 10:46 [LTP] [PATCH 2/2] Added check for memory controller ( functional, regression & stress ) Rishikesh
2009-12-29 9:20 ` Li Zefan
2009-12-29 10:03 ` Rishikesh
2009-12-30 4:00 ` Rishikesh
2009-12-30 5:21 ` Li Zefan
2010-01-07 10:46 ` Garrett Cooper
2010-01-07 11:06 ` Subrata Modak
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox