Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
libclone/ | 12-May-2024 | - | 254 | 167 | ||
mountns/ | 12-May-2024 | - | 643 | 318 | ||
mqns/ | 12-May-2024 | - | 830 | 542 | ||
netns/ | 12-May-2024 | - | 608 | 342 | ||
pidns/ | 12-May-2024 | - | 2,674 | 1,524 | ||
share/ | 12-May-2024 | - | 521 | 306 | ||
sysvipc/ | 12-May-2024 | - | 1,550 | 991 | ||
timens/ | 12-May-2024 | - | 79 | 49 | ||
userns/ | 12-May-2024 | - | 1,355 | 867 | ||
utsname/ | 12-May-2024 | - | 430 | 307 | ||
.gitignore | D | 12-May-2024 | 244 | 15 | 14 | |
Makefile | D | 12-May-2024 | 743 | 34 | 16 | |
Makefile.inc | D | 12-May-2024 | 1.4 KiB | 46 | 10 | |
README | D | 12-May-2024 | 2.4 KiB | 51 | 46 | |
TEST_PLAN.txt | D | 12-May-2024 | 1.4 KiB | 28 | 25 |
README
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 21CONTAINER TESTS AUTOMATION SUITE 22---------------------------- 23The tests requires the Kernel to be compiled with the following configs 24 25CONFIG_DUMMY=y(or =m) 26CONFIG_NAMESPACES=y 27CONFIG_UTS_NS=y 28CONFIG_IPC_NS=y 29CONFIG_USER_NS=y 30CONFIG_PID_NS=y 31CONFIG_NET_NS=y 32CONFIG_VETH=y(or =m) 33CONFIG_MACVLAN=y(optional) 34 35The container test automation suite helps run the container functionality 36(e.g: utsname etc..) tests and report results. Please refer the following 37each functionality README file for detail: 38 39sysvipc/* 40 Contains all the testcases related to IPC NS tests. 41posixmq/* 42 Contains all the testcases related to POSIX MQ NS tests. These 43 are strictly speaking a part of the ipc namespaces, but can be 44 enabled in the kernel without SYSV IPC support. 45utsname/* 46 Contains all the testcases related to utsname tests. 47libclone/* 48 Contains the library API for clone() . 49netns/* 50 Contains the testcases related to the network NS tests. 51