Add test cases of memory.max_usage_in_bytes and memory.memsw.max_usage_in_bytes.
Signed-off-by: Peng Haitao <[email protected]>
---
runtest/controllers | 1 +
.../functional/memcg_max_usage_in_bytes_test.sh | 98 ++++++++++++++++++++
2 files changed, 99 insertions(+), 0 deletions(-)
create mode 100644
testcases/kernel/controllers/memcg/functional/memcg_max_usage_in_bytes_test.sh
diff --git a/runtest/controllers b/runtest/controllers
index d495010..33ac6fd 100644
--- a/runtest/controllers
+++ b/runtest/controllers
@@ -2,6 +2,7 @@
cgroup cgroup_regression_test.sh
memcg_regression memcg_regression_test.sh
memcg_function memcg_function_test.sh
+memcg_max_usage_in_bytes memcg_max_usage_in_bytes_test.sh
memcg_stress memcg_stress_test.sh
memcg_control PAGESIZE=$(mem_process -p);memcg_control_test.sh
$PAGESIZE $PAGESIZE $((PAGESIZE * 2))
cgroup_fj run_cgroup_test_fj.sh
diff --git
a/testcases/kernel/controllers/memcg/functional/memcg_max_usage_in_bytes_test.sh
b/testcases/kernel/controllers/memcg/functional/memcg_max_usage_in_bytes_test.sh
new file mode 100644
index 0000000..f42f649
--- /dev/null
+++
b/testcases/kernel/controllers/memcg/functional/memcg_max_usage_in_bytes_test.sh
@@ -0,0 +1,98 @@
+#! /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_max_usage_in_bytes_test.sh
+# Description: Tests memory.max_usage_in_bytes.
+# Author: Peng Haitao <[email protected]>
+# History: 2012/01/17 - Created.
+#
+
+export TCID="memcg_max_usage_in_bytes_test"
+export TST_TOTAL=4
+export TST_COUNT=0
+
+. memcg_lib.sh || exit 1
+
+# Test memory.max_usage_in_bytes
+testcase_1()
+{
+ test_max_usage_in_bytes "--mmap-anon" $((PAGESIZE*1024)) \
+ "memory.max_usage_in_bytes" $((PAGESIZE*1024)) 0
+}
+
+# Test memory.memsw.max_usage_in_bytes
+testcase_2()
+{
+ echo $((PAGESIZE*2048)) > memory.limit_in_bytes
+ echo $((PAGESIZE*2048)) > memory.memsw.limit_in_bytes
+ test_max_usage_in_bytes "--mmap-anon" $((PAGESIZE*1024)) \
+ "memory.memsw.max_usage_in_bytes" $((PAGESIZE*1024)) 0
+}
+
+# Test reset memory.max_usage_in_bytes
+testcase_3()
+{
+ test_max_usage_in_bytes "--mmap-anon" $((PAGESIZE*1024)) \
+ "memory.max_usage_in_bytes" $((PAGESIZE*1024)) 1
+}
+
+# Test reset memory.memsw.max_usage_in_bytes
+testcase_4()
+{
+ echo $((PAGESIZE*2048)) > memory.limit_in_bytes
+ echo $((PAGESIZE*2048)) > memory.memsw.limit_in_bytes
+ test_max_usage_in_bytes "--mmap-anon" $((PAGESIZE*1024)) \
+ "memory.memsw.max_usage_in_bytes" $((PAGESIZE*1024)) 1
+}
+
+# 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.max_usage_in_bytes and memory.memsw.max_usage_in_bytes.
Signed-off-by: Peng Haitao <[email protected]>
---
runtest/controllers | 1 +
.../functional/memcg_max_usage_in_bytes_test.sh | 98 ++++++++++++++++++++
2 files changed, 99 insertions(+), 0 deletions(-)
create mode 100644
testcases/kernel/controllers/memcg/functional/memcg_max_usage_in_bytes_test.sh
diff --git a/runtest/controllers b/runtest/controllers
index d495010..33ac6fd 100644
--- a/runtest/controllers
+++ b/runtest/controllers
@@ -2,6 +2,7 @@
cgroup cgroup_regression_test.sh
memcg_regression memcg_regression_test.sh
memcg_function memcg_function_test.sh
+memcg_max_usage_in_bytes memcg_max_usage_in_bytes_test.sh
memcg_stress memcg_stress_test.sh
memcg_control PAGESIZE=$(mem_process -p);memcg_control_test.sh
$PAGESIZE $PAGESIZE $((PAGESIZE * 2))
cgroup_fj run_cgroup_test_fj.sh
diff --git
a/testcases/kernel/controllers/memcg/functional/memcg_max_usage_in_bytes_test.sh
b/testcases/kernel/controllers/memcg/functional/memcg_max_usage_in_bytes_test.sh
new file mode 100644
index 0000000..f42f649
--- /dev/null
+++
b/testcases/kernel/controllers/memcg/functional/memcg_max_usage_in_bytes_test.sh
@@ -0,0 +1,98 @@
+#! /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_max_usage_in_bytes_test.sh
+# Description: Tests memory.max_usage_in_bytes.
+# Author: Peng Haitao <[email protected]>
+# History: 2012/01/17 - Created.
+#
+
+export TCID="memcg_max_usage_in_bytes_test"
+export TST_TOTAL=4
+export TST_COUNT=0
+
+. memcg_lib.sh || exit 1
+
+# Test memory.max_usage_in_bytes
+testcase_1()
+{
+ test_max_usage_in_bytes "--mmap-anon" $((PAGESIZE*1024)) \
+ "memory.max_usage_in_bytes" $((PAGESIZE*1024)) 0
+}
+
+# Test memory.memsw.max_usage_in_bytes
+testcase_2()
+{
+ echo $((PAGESIZE*2048)) > memory.limit_in_bytes
+ echo $((PAGESIZE*2048)) > memory.memsw.limit_in_bytes
+ test_max_usage_in_bytes "--mmap-anon" $((PAGESIZE*1024)) \
+ "memory.memsw.max_usage_in_bytes" $((PAGESIZE*1024)) 0
+}
+
+# Test reset memory.max_usage_in_bytes
+testcase_3()
+{
+ test_max_usage_in_bytes "--mmap-anon" $((PAGESIZE*1024)) \
+ "memory.max_usage_in_bytes" $((PAGESIZE*1024)) 1
+}
+
+# Test reset memory.memsw.max_usage_in_bytes
+testcase_4()
+{
+ echo $((PAGESIZE*2048)) > memory.limit_in_bytes
+ echo $((PAGESIZE*2048)) > memory.memsw.limit_in_bytes
+ test_max_usage_in_bytes "--mmap-anon" $((PAGESIZE*1024)) \
+ "memory.memsw.max_usage_in_bytes" $((PAGESIZE*1024)) 1
+}
+
+# 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