1 ################################################################################ 2 ## ## 3 ## Copyright (c) International Business Machines Corp., 2007 ## 4 ## ## 5 ## This program is free software; you can redistribute it and#or modify ## 6 ## it under the terms of the GNU General Public License as published by ## 7 ## the Free Software Foundation; either version 2 of the License, or ## 8 ## (at your option) any later version. ## 9 ## ## 10 ## This program is distributed in the hope that it will be useful, but ## 11 ## WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ## 12 ## or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ## 13 ## for more details. ## 14 ## ## 15 ## You should have received a copy of the GNU General Public License ## 16 ## along with this program; if not, write to the Free Software ## 17 ## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA ## 18 ## ## 19 ################################################################################ 20 21 CONTAINER TESTS AUTOMATION SUITE 22 ---------------------------- 23 The tests requires the Kernel to be compiled with the following config's 24 25 CONFIG_NAMESPACES=y 26 CONFIG_UTS_NS=y 27 CONFIG_IPC_NS=y 28 CONFIG_USER_NS=y 29 CONFIG_PID_NS=y 30 CONFIG_NET_NS=y 31 CONFIG_VETH=y(or =m) 32 CONFIG_MACVLAN=y(optional) 33 34 The container test automation suite helps run the container functionality 35 (e.g: utsname etc..) tests and report results. Please refer the following 36 each functionality README file for detail: 37 38 sysvipc/* 39 Contains all the testcases related to IPC NS tests. 40 posixmq/* 41 Contains all the testcases related to POSIX MQ NS tests. These 42 are strictly speaking a part of the ipc namespaces, but can be 43 enabled in the kernel without SYSV IPC support. 44 utsname/* 45 Contains all the testcases related to utsname tests. 46 libclone/* 47 Contains the library API for clone() . 48 netns/* 49 Contains the testcases related to the network NS tests. 50