Add test cases of memory.usage_in_bytes and memory.memsw.usage_in_bytes.
Signed-off-by: Peng Haitao <[email protected]>
---
runtest/controllers | 1 +
.../memcg/functional/memcg_usage_in_bytes_test.sh | 82 ++++++++++++++++++++
2 files changed, 83 insertions(+), 0 deletions(-)
create mode 100644
testcases/kernel/controllers/memcg/functional/memcg_usage_in_bytes_test.sh
diff --git a/runtest/controllers b/runtest/controllers
index d7abb80..9739460 100644
--- a/runtest/controllers
+++ b/runtest/controllers
@@ -6,6 +6,7 @@ memcg_max_usage_in_bytes memcg_max_usage_in_bytes_test.sh
memcg_move_charge_at_immigrate memcg_move_charge_at_immigrate_test.sh
memcg_memsw_limit_in_bytes memcg_memsw_limit_in_bytes_test.sh
memcg_stat memcg_stat_test.sh
+memcg_usage_in_bytes memcg_usage_in_bytes_test.sh
memcg_use_hierarchy memcg_use_hierarchy_test.sh
memcg_stress memcg_stress_test.sh
memcg_control PAGESIZE=$(mem_process -p);memcg_control_test.sh
$PAGESIZE $PAGESIZE $((PAGESIZE * 2))
diff --git
a/testcases/kernel/controllers/memcg/functional/memcg_usage_in_bytes_test.sh
b/testcases/kernel/controllers/memcg/functional/memcg_usage_in_bytes_test.sh
new file mode 100644
index 0000000..5ad3d88
--- /dev/null
+++ b/testcases/kernel/controllers/memcg/functional/memcg_usage_in_bytes_test.sh
@@ -0,0 +1,82 @@
+#! /bin/sh
+
+################################################################################
+##
##
+## Copyright (c) 2012 FUJITSU LIMITED
##
+##
##
+## This program is free software; you can redistribute it and#or modify
##
+## it under the terms of the GNU General Public License as published by
##
+## the Free Software Foundation; either version 2 of the License, or
##
+## (at your option) any later version.
##
+##
##
+## This program is distributed in the hope that it will be useful, but
##
+## WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
##
+## or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
##
+## for more details.
##
+##
##
+## You should have received a copy of the GNU General Public License
##
+## along with this program; if not, write to the Free Software
##
+## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
##
+##
##
+################################################################################
+#
+# File : memcg_usage_in_bytes_test.sh
+# Description: Tests memory.max_usage_in_bytes.
+# Author: Peng Haitao <[email protected]>
+# History: 2012/01/16 - Created.
+#
+
+export TCID="memcg_usage_in_bytes_test"
+export TST_TOTAL=2
+export TST_COUNT=0
+
+. memcg_lib.sh || exit 1
+
+# Test memory.usage_in_bytes
+testcase_1()
+{
+ test_mem_stat "--mmap-anon" $((PAGESIZE*1024)) \
+ "memory.usage_in_bytes" $((PAGESIZE*1024)) 0
+}
+
+# Test memory.memsw.usage_in_bytes
+testcase_2()
+{
+ echo $((PAGESIZE*2048)) > memory.limit_in_bytes
+ echo $((PAGESIZE*2048)) > memory.memsw.limit_in_bytes
+ test_mem_stat "--mmap-anon" $((PAGESIZE*1024)) \
+ "memory.memsw.usage_in_bytes" $((PAGESIZE*1024)) 0
+}
+
+# Run all the test cases
+for i in $(seq 1 $TST_TOTAL)
+do
+ export TST_COUNT=$(( $TST_COUNT + 1 ))
+ cur_id=$i
+
+ do_mount;
+ if [ $? -ne 0 ]; then
+ echo "Cannot create memcg"
+ exit 1
+ fi
+
+ # prepare
+ mkdir /dev/memcg/$i 2> /dev/null
+ cd /dev/memcg/$i
+
+ # run the case
+ testcase_$i
+
+ # clean up
+ sleep 1
+ cd $TEST_PATH
+ rmdir /dev/memcg/$i
+
+ cleanup;
+done
+
+if [ $failed -ne 0 ]; then
+ exit $failed
+else
+ exit 0
+fi
--
1.7.1
--
Best Regards,
Peng
Add test cases of memory.usage_in_bytes and memory.memsw.usage_in_bytes.
Signed-off-by: Peng Haitao <[email protected]>
---
runtest/controllers | 1 +
.../memcg/functional/memcg_usage_in_bytes_test.sh | 82 ++++++++++++++++++++
2 files changed, 83 insertions(+), 0 deletions(-)
create mode 100644
testcases/kernel/controllers/memcg/functional/memcg_usage_in_bytes_test.sh
diff --git a/runtest/controllers b/runtest/controllers
index d7abb80..9739460 100644
--- a/runtest/controllers
+++ b/runtest/controllers
@@ -6,6 +6,7 @@ memcg_max_usage_in_bytes memcg_max_usage_in_bytes_test.sh
memcg_move_charge_at_immigrate memcg_move_charge_at_immigrate_test.sh
memcg_memsw_limit_in_bytes memcg_memsw_limit_in_bytes_test.sh
memcg_stat memcg_stat_test.sh
+memcg_usage_in_bytes memcg_usage_in_bytes_test.sh
memcg_use_hierarchy memcg_use_hierarchy_test.sh
memcg_stress memcg_stress_test.sh
memcg_control PAGESIZE=$(mem_process -p);memcg_control_test.sh
$PAGESIZE $PAGESIZE $((PAGESIZE * 2))
diff --git
a/testcases/kernel/controllers/memcg/functional/memcg_usage_in_bytes_test.sh
b/testcases/kernel/controllers/memcg/functional/memcg_usage_in_bytes_test.sh
new file mode 100644
index 0000000..5ad3d88
--- /dev/null
+++ b/testcases/kernel/controllers/memcg/functional/memcg_usage_in_bytes_test.sh
@@ -0,0 +1,82 @@
+#! /bin/sh
+
+################################################################################
+##
##
+## Copyright (c) 2012 FUJITSU LIMITED
##
+##
##
+## This program is free software; you can redistribute it and#or modify
##
+## it under the terms of the GNU General Public License as published by
##
+## the Free Software Foundation; either version 2 of the License, or
##
+## (at your option) any later version.
##
+##
##
+## This program is distributed in the hope that it will be useful, but
##
+## WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
##
+## or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
##
+## for more details.
##
+##
##
+## You should have received a copy of the GNU General Public License
##
+## along with this program; if not, write to the Free Software
##
+## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
##
+##
##
+################################################################################
+#
+# File : memcg_usage_in_bytes_test.sh
+# Description: Tests memory.max_usage_in_bytes.
+# Author: Peng Haitao <[email protected]>
+# History: 2012/01/16 - Created.
+#
+
+export TCID="memcg_usage_in_bytes_test"
+export TST_TOTAL=2
+export TST_COUNT=0
+
+. memcg_lib.sh || exit 1
+
+# Test memory.usage_in_bytes
+testcase_1()
+{
+ test_mem_stat "--mmap-anon" $((PAGESIZE*1024)) \
+ "memory.usage_in_bytes" $((PAGESIZE*1024)) 0
+}
+
+# Test memory.memsw.usage_in_bytes
+testcase_2()
+{
+ echo $((PAGESIZE*2048)) > memory.limit_in_bytes
+ echo $((PAGESIZE*2048)) > memory.memsw.limit_in_bytes
+ test_mem_stat "--mmap-anon" $((PAGESIZE*1024)) \
+ "memory.memsw.usage_in_bytes" $((PAGESIZE*1024)) 0
+}
+
+# Run all the test cases
+for i in $(seq 1 $TST_TOTAL)
+do
+ export TST_COUNT=$(( $TST_COUNT + 1 ))
+ cur_id=$i
+
+ do_mount;
+ if [ $? -ne 0 ]; then
+ echo "Cannot create memcg"
+ exit 1
+ fi
+
+ # prepare
+ mkdir /dev/memcg/$i 2> /dev/null
+ cd /dev/memcg/$i
+
+ # run the case
+ testcase_$i
+
+ # clean up
+ sleep 1
+ cd $TEST_PATH
+ rmdir /dev/memcg/$i
+
+ cleanup;
+done
+
+if [ $failed -ne 0 ]; then
+ exit $failed
+else
+ exit 0
+fi
--
1.7.1
------------------------------------------------------------------------------
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
_______________________________________________
Ltp-list mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/ltp-list