memcg_move_charge_at_immigrate_test.sh 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. #! /bin/sh
  2. ################################################################################
  3. ## ##
  4. ## Copyright (c) 2012 FUJITSU LIMITED ##
  5. ## ##
  6. ## This program is free software; you can redistribute it and#or modify ##
  7. ## it under the terms of the GNU General Public License as published by ##
  8. ## the Free Software Foundation; either version 2 of the License, or ##
  9. ## (at your option) any later version. ##
  10. ## ##
  11. ## This program is distributed in the hope that it will be useful, but ##
  12. ## WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ##
  13. ## or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ##
  14. ## for more details. ##
  15. ## ##
  16. ## You should have received a copy of the GNU General Public License ##
  17. ## along with this program; if not, write to the Free Software ##
  18. ## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA ##
  19. ## ##
  20. ################################################################################
  21. #
  22. # File : memcg_move_charge_at_immigrate_test.sh
  23. # Description: Tests memory.move_charge_at_immigrate.
  24. # Author: Peng Haitao <penght@cn.fujitsu.com>
  25. # History: 2012/01/16 - Created.
  26. #
  27. TCID="memcg_move_charge_at_immigrate_test"
  28. TST_TOTAL=4
  29. . memcg_lib.sh
  30. # Test disable moving charges
  31. testcase_1()
  32. {
  33. test_move_charge "--mmap-anon" $PAGESIZES $PAGESIZES 0 0 0 $PAGESIZES 0
  34. }
  35. # Test move anon
  36. testcase_2()
  37. {
  38. test_move_charge "--mmap-anon --shm --mmap-file" $PAGESIZES \
  39. $((PAGESIZES*3)) 1 $PAGESIZES 0 0 $((PAGESIZES*2))
  40. }
  41. # Test move file
  42. testcase_3()
  43. {
  44. test_move_charge "--mmap-anon --shm --mmap-file" $PAGESIZES \
  45. $((PAGESIZES*3)) 2 0 $((PAGESIZES*2)) $PAGESIZES 0
  46. }
  47. # Test move anon and file
  48. testcase_4()
  49. {
  50. test_move_charge "--mmap-anon --shm" $PAGESIZES \
  51. $((PAGESIZES*2)) 3 $PAGESIZES $PAGESIZES 0 0
  52. }
  53. run_tests
  54. tst_exit