2019-05-28 20:10:09 +03:00
// SPDX-License-Identifier: GPL-2.0-only
2017-03-31 07:45:41 +03:00
/* Copyright (c) 2017 Facebook
*/
2020-03-14 04:39:32 +03:00
# define _GNU_SOURCE
2019-03-02 06:42:13 +03:00
# include "test_progs.h"
2022-04-09 03:17:49 +03:00
# include "testing_helpers.h"
2019-09-04 19:25:04 +03:00
# include "cgroup_helpers.h"
2019-07-28 06:25:24 +03:00
# include <argp.h>
2020-03-14 04:39:32 +03:00
# include <pthread.h>
# include <sched.h>
2020-02-25 03:08:47 +03:00
# include <signal.h>
2020-03-14 04:39:32 +03:00
# include <string.h>
2020-02-25 03:08:47 +03:00
# include <execinfo.h> /* backtrace */
2021-01-12 10:55:17 +03:00
# include <linux/membarrier.h>
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
# include <sys/sysinfo.h> /* get_nprocs */
# include <netinet/in.h>
# include <sys/select.h>
# include <sys/socket.h>
# include <sys/un.h>
2017-03-31 07:45:41 +03:00
2022-04-27 07:13:53 +03:00
static bool verbose ( void )
{
return env . verbosity > VERBOSE_NONE ;
}
static void stdio_hijack_init ( char * * log_buf , size_t * log_cnt )
{
# ifdef __GLIBC__
if ( verbose ( ) & & env . worker_id = = - 1 ) {
/* nothing to do, output to stdout by default */
return ;
}
fflush ( stdout ) ;
fflush ( stderr ) ;
stdout = open_memstream ( log_buf , log_cnt ) ;
if ( ! stdout ) {
stdout = env . stdout ;
perror ( " open_memstream " ) ;
return ;
}
if ( env . subtest_state )
env . subtest_state - > stdout = stdout ;
else
env . test_state - > stdout = stdout ;
stderr = stdout ;
# endif
}
static void stdio_hijack ( char * * log_buf , size_t * log_cnt )
{
# ifdef __GLIBC__
if ( verbose ( ) & & env . worker_id = = - 1 ) {
/* nothing to do, output to stdout by default */
return ;
}
env . stdout = stdout ;
env . stderr = stderr ;
stdio_hijack_init ( log_buf , log_cnt ) ;
# endif
}
static void stdio_restore_cleanup ( void )
{
# ifdef __GLIBC__
if ( verbose ( ) & & env . worker_id = = - 1 ) {
/* nothing to do, output to stdout by default */
return ;
}
fflush ( stdout ) ;
if ( env . subtest_state ) {
fclose ( env . subtest_state - > stdout ) ;
2022-04-29 01:57:44 +03:00
env . subtest_state - > stdout = NULL ;
2022-04-27 07:13:53 +03:00
stdout = env . test_state - > stdout ;
stderr = env . test_state - > stdout ;
} else {
fclose ( env . test_state - > stdout ) ;
2022-04-29 01:57:44 +03:00
env . test_state - > stdout = NULL ;
2022-04-27 07:13:53 +03:00
}
# endif
}
static void stdio_restore ( void )
{
# ifdef __GLIBC__
if ( verbose ( ) & & env . worker_id = = - 1 ) {
/* nothing to do, output to stdout by default */
return ;
}
if ( stdout = = env . stdout )
return ;
stdio_restore_cleanup ( ) ;
stdout = env . stdout ;
stderr = env . stderr ;
# endif
}
2021-08-17 07:47:32 +03:00
/* Adapted from perf/util/string.c */
static bool glob_match ( const char * str , const char * pat )
{
while ( * str & & * pat & & * pat ! = ' * ' ) {
if ( * str ! = * pat )
return false ;
str + + ;
pat + + ;
}
/* Check wild card */
if ( * pat = = ' * ' ) {
while ( * pat = = ' * ' )
pat + + ;
if ( ! * pat ) /* Tail wild card matches all */
return true ;
while ( * str )
if ( glob_match ( str + + , pat ) )
return true ;
}
return ! * str & & ! * pat ;
}
2020-07-07 10:12:19 +03:00
# define EXIT_NO_TEST 2
2020-07-07 10:12:25 +03:00
# define EXIT_ERR_SETUP_INFRA 3
2020-07-07 10:12:19 +03:00
2019-07-28 06:25:28 +03:00
/* defined in test_progs.h */
selftests/bpf: Add whitelist/blacklist of test names to test_progs
Add ability to specify a list of test name substrings for selecting which
tests to run. So now -t is accepting a comma-separated list of strings,
similarly to how -n accepts a comma-separated list of test numbers.
Additionally, add ability to blacklist tests by name. Blacklist takes
precedence over whitelist. Blacklisting is important for cases where it's
known that some tests can't pass (e.g., due to perf hardware events that are
not available within VM). This is going to be used for libbpf testing in
Travis CI in its Github repo.
Example runs with just whitelist and whitelist + blacklist:
$ sudo ./test_progs -tattach,core/existence
#1 attach_probe:OK
#6 cgroup_attach_autodetach:OK
#7 cgroup_attach_multi:OK
#8 cgroup_attach_override:OK
#9 core_extern:OK
#10/44 existence:OK
#10/45 existence___minimal:OK
#10/46 existence__err_int_sz:OK
#10/47 existence__err_int_type:OK
#10/48 existence__err_int_kind:OK
#10/49 existence__err_arr_kind:OK
#10/50 existence__err_arr_value_type:OK
#10/51 existence__err_struct_type:OK
#10 core_reloc:OK
#19 flow_dissector_reattach:OK
#60 tp_attach_query:OK
Summary: 8/8 PASSED, 0 SKIPPED, 0 FAILED
$ sudo ./test_progs -tattach,core/existence -bcgroup,flow/arr
#1 attach_probe:OK
#9 core_extern:OK
#10/44 existence:OK
#10/45 existence___minimal:OK
#10/46 existence__err_int_sz:OK
#10/47 existence__err_int_type:OK
#10/48 existence__err_int_kind:OK
#10/51 existence__err_struct_type:OK
#10 core_reloc:OK
#60 tp_attach_query:OK
Summary: 4/6 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Andrii Nakryiko <andriin@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Cc: Julia Kartseva <hex@fb.com>
Link: https://lore.kernel.org/bpf/20200116005549.3644118-1-andriin@fb.com
2020-01-16 03:55:49 +03:00
struct test_env env = { } ;
2019-07-28 06:25:28 +03:00
struct prog_test_def {
const char * test_name ;
int test_num ;
void ( * run_test ) ( void ) ;
2021-10-06 21:56:07 +03:00
void ( * run_serial_test ) ( void ) ;
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
bool should_run ;
2019-09-04 19:25:04 +03:00
bool need_cgroup_cleanup ;
2019-07-28 06:25:28 +03:00
} ;
2020-03-11 21:53:45 +03:00
/* Override C runtime library's usleep() implementation to ensure nanosleep()
* is always called . Usleep is frequently used in selftests as a way to
* trigger kprobe and tracepoints .
*/
int usleep ( useconds_t usec )
{
2020-03-14 03:27:43 +03:00
struct timespec ts = {
. tv_sec = usec / 1000000 ,
. tv_nsec = ( usec % 1000000 ) * 1000 ,
} ;
2020-03-13 09:18:37 +03:00
2020-03-14 03:27:43 +03:00
return syscall ( __NR_nanosleep , & ts , NULL ) ;
2020-03-11 21:53:45 +03:00
}
selftests/bpf: add sub-tests support for test_progs
Allow tests to have their own set of sub-tests. Also add ability to do
test/subtest selection using `-t <test-name>/<subtest-name>` and `-n
<test-nums-set>/<subtest-nums-set>`, as an extension of existing -t/-n
selector options. For the <test-num-set> format: it's a comma-separated
list of either individual test numbers (1-based), or range of test
numbers. E.g., all of the following are valid sets of test numbers:
- 10
- 1,2,3
- 1-3
- 5-10,1,3-4
'/<subtest' part is optional, but has the same format. E.g., to select
test #3 and its sub-tests #10 through #15, use: -t 3/10-15.
Similarly, to select tests by name, use `-t verif/strobe`:
$ sudo ./test_progs -t verif/strobe
#3/12 strobemeta.o:OK
#3/13 strobemeta_nounroll1.o:OK
#3/14 strobemeta_nounroll2.o:OK
#3 bpf_verif_scale:OK
Summary: 1/3 PASSED, 0 FAILED
Example of using subtest API is in the next patch, converting
bpf_verif_scale.c tests to use sub-tests.
Signed-off-by: Andrii Nakryiko <andriin@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
2019-07-28 06:25:29 +03:00
static bool should_run ( struct test_selector * sel , int num , const char * name )
{
selftests/bpf: Add whitelist/blacklist of test names to test_progs
Add ability to specify a list of test name substrings for selecting which
tests to run. So now -t is accepting a comma-separated list of strings,
similarly to how -n accepts a comma-separated list of test numbers.
Additionally, add ability to blacklist tests by name. Blacklist takes
precedence over whitelist. Blacklisting is important for cases where it's
known that some tests can't pass (e.g., due to perf hardware events that are
not available within VM). This is going to be used for libbpf testing in
Travis CI in its Github repo.
Example runs with just whitelist and whitelist + blacklist:
$ sudo ./test_progs -tattach,core/existence
#1 attach_probe:OK
#6 cgroup_attach_autodetach:OK
#7 cgroup_attach_multi:OK
#8 cgroup_attach_override:OK
#9 core_extern:OK
#10/44 existence:OK
#10/45 existence___minimal:OK
#10/46 existence__err_int_sz:OK
#10/47 existence__err_int_type:OK
#10/48 existence__err_int_kind:OK
#10/49 existence__err_arr_kind:OK
#10/50 existence__err_arr_value_type:OK
#10/51 existence__err_struct_type:OK
#10 core_reloc:OK
#19 flow_dissector_reattach:OK
#60 tp_attach_query:OK
Summary: 8/8 PASSED, 0 SKIPPED, 0 FAILED
$ sudo ./test_progs -tattach,core/existence -bcgroup,flow/arr
#1 attach_probe:OK
#9 core_extern:OK
#10/44 existence:OK
#10/45 existence___minimal:OK
#10/46 existence__err_int_sz:OK
#10/47 existence__err_int_type:OK
#10/48 existence__err_int_kind:OK
#10/51 existence__err_struct_type:OK
#10 core_reloc:OK
#60 tp_attach_query:OK
Summary: 4/6 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Andrii Nakryiko <andriin@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Cc: Julia Kartseva <hex@fb.com>
Link: https://lore.kernel.org/bpf/20200116005549.3644118-1-andriin@fb.com
2020-01-16 03:55:49 +03:00
int i ;
for ( i = 0 ; i < sel - > blacklist . cnt ; i + + ) {
2022-04-09 03:17:49 +03:00
if ( glob_match ( name , sel - > blacklist . tests [ i ] . name ) & &
! sel - > blacklist . tests [ i ] . subtest_cnt )
selftests/bpf: Add whitelist/blacklist of test names to test_progs
Add ability to specify a list of test name substrings for selecting which
tests to run. So now -t is accepting a comma-separated list of strings,
similarly to how -n accepts a comma-separated list of test numbers.
Additionally, add ability to blacklist tests by name. Blacklist takes
precedence over whitelist. Blacklisting is important for cases where it's
known that some tests can't pass (e.g., due to perf hardware events that are
not available within VM). This is going to be used for libbpf testing in
Travis CI in its Github repo.
Example runs with just whitelist and whitelist + blacklist:
$ sudo ./test_progs -tattach,core/existence
#1 attach_probe:OK
#6 cgroup_attach_autodetach:OK
#7 cgroup_attach_multi:OK
#8 cgroup_attach_override:OK
#9 core_extern:OK
#10/44 existence:OK
#10/45 existence___minimal:OK
#10/46 existence__err_int_sz:OK
#10/47 existence__err_int_type:OK
#10/48 existence__err_int_kind:OK
#10/49 existence__err_arr_kind:OK
#10/50 existence__err_arr_value_type:OK
#10/51 existence__err_struct_type:OK
#10 core_reloc:OK
#19 flow_dissector_reattach:OK
#60 tp_attach_query:OK
Summary: 8/8 PASSED, 0 SKIPPED, 0 FAILED
$ sudo ./test_progs -tattach,core/existence -bcgroup,flow/arr
#1 attach_probe:OK
#9 core_extern:OK
#10/44 existence:OK
#10/45 existence___minimal:OK
#10/46 existence__err_int_sz:OK
#10/47 existence__err_int_type:OK
#10/48 existence__err_int_kind:OK
#10/51 existence__err_struct_type:OK
#10 core_reloc:OK
#60 tp_attach_query:OK
Summary: 4/6 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Andrii Nakryiko <andriin@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Cc: Julia Kartseva <hex@fb.com>
Link: https://lore.kernel.org/bpf/20200116005549.3644118-1-andriin@fb.com
2020-01-16 03:55:49 +03:00
return false ;
}
selftests/bpf: add sub-tests support for test_progs
Allow tests to have their own set of sub-tests. Also add ability to do
test/subtest selection using `-t <test-name>/<subtest-name>` and `-n
<test-nums-set>/<subtest-nums-set>`, as an extension of existing -t/-n
selector options. For the <test-num-set> format: it's a comma-separated
list of either individual test numbers (1-based), or range of test
numbers. E.g., all of the following are valid sets of test numbers:
- 10
- 1,2,3
- 1-3
- 5-10,1,3-4
'/<subtest' part is optional, but has the same format. E.g., to select
test #3 and its sub-tests #10 through #15, use: -t 3/10-15.
Similarly, to select tests by name, use `-t verif/strobe`:
$ sudo ./test_progs -t verif/strobe
#3/12 strobemeta.o:OK
#3/13 strobemeta_nounroll1.o:OK
#3/14 strobemeta_nounroll2.o:OK
#3 bpf_verif_scale:OK
Summary: 1/3 PASSED, 0 FAILED
Example of using subtest API is in the next patch, converting
bpf_verif_scale.c tests to use sub-tests.
Signed-off-by: Andrii Nakryiko <andriin@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
2019-07-28 06:25:29 +03:00
selftests/bpf: Add whitelist/blacklist of test names to test_progs
Add ability to specify a list of test name substrings for selecting which
tests to run. So now -t is accepting a comma-separated list of strings,
similarly to how -n accepts a comma-separated list of test numbers.
Additionally, add ability to blacklist tests by name. Blacklist takes
precedence over whitelist. Blacklisting is important for cases where it's
known that some tests can't pass (e.g., due to perf hardware events that are
not available within VM). This is going to be used for libbpf testing in
Travis CI in its Github repo.
Example runs with just whitelist and whitelist + blacklist:
$ sudo ./test_progs -tattach,core/existence
#1 attach_probe:OK
#6 cgroup_attach_autodetach:OK
#7 cgroup_attach_multi:OK
#8 cgroup_attach_override:OK
#9 core_extern:OK
#10/44 existence:OK
#10/45 existence___minimal:OK
#10/46 existence__err_int_sz:OK
#10/47 existence__err_int_type:OK
#10/48 existence__err_int_kind:OK
#10/49 existence__err_arr_kind:OK
#10/50 existence__err_arr_value_type:OK
#10/51 existence__err_struct_type:OK
#10 core_reloc:OK
#19 flow_dissector_reattach:OK
#60 tp_attach_query:OK
Summary: 8/8 PASSED, 0 SKIPPED, 0 FAILED
$ sudo ./test_progs -tattach,core/existence -bcgroup,flow/arr
#1 attach_probe:OK
#9 core_extern:OK
#10/44 existence:OK
#10/45 existence___minimal:OK
#10/46 existence__err_int_sz:OK
#10/47 existence__err_int_type:OK
#10/48 existence__err_int_kind:OK
#10/51 existence__err_struct_type:OK
#10 core_reloc:OK
#60 tp_attach_query:OK
Summary: 4/6 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Andrii Nakryiko <andriin@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Cc: Julia Kartseva <hex@fb.com>
Link: https://lore.kernel.org/bpf/20200116005549.3644118-1-andriin@fb.com
2020-01-16 03:55:49 +03:00
for ( i = 0 ; i < sel - > whitelist . cnt ; i + + ) {
2022-04-09 03:17:49 +03:00
if ( glob_match ( name , sel - > whitelist . tests [ i ] . name ) )
selftests/bpf: Add whitelist/blacklist of test names to test_progs
Add ability to specify a list of test name substrings for selecting which
tests to run. So now -t is accepting a comma-separated list of strings,
similarly to how -n accepts a comma-separated list of test numbers.
Additionally, add ability to blacklist tests by name. Blacklist takes
precedence over whitelist. Blacklisting is important for cases where it's
known that some tests can't pass (e.g., due to perf hardware events that are
not available within VM). This is going to be used for libbpf testing in
Travis CI in its Github repo.
Example runs with just whitelist and whitelist + blacklist:
$ sudo ./test_progs -tattach,core/existence
#1 attach_probe:OK
#6 cgroup_attach_autodetach:OK
#7 cgroup_attach_multi:OK
#8 cgroup_attach_override:OK
#9 core_extern:OK
#10/44 existence:OK
#10/45 existence___minimal:OK
#10/46 existence__err_int_sz:OK
#10/47 existence__err_int_type:OK
#10/48 existence__err_int_kind:OK
#10/49 existence__err_arr_kind:OK
#10/50 existence__err_arr_value_type:OK
#10/51 existence__err_struct_type:OK
#10 core_reloc:OK
#19 flow_dissector_reattach:OK
#60 tp_attach_query:OK
Summary: 8/8 PASSED, 0 SKIPPED, 0 FAILED
$ sudo ./test_progs -tattach,core/existence -bcgroup,flow/arr
#1 attach_probe:OK
#9 core_extern:OK
#10/44 existence:OK
#10/45 existence___minimal:OK
#10/46 existence__err_int_sz:OK
#10/47 existence__err_int_type:OK
#10/48 existence__err_int_kind:OK
#10/51 existence__err_struct_type:OK
#10 core_reloc:OK
#60 tp_attach_query:OK
Summary: 4/6 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Andrii Nakryiko <andriin@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Cc: Julia Kartseva <hex@fb.com>
Link: https://lore.kernel.org/bpf/20200116005549.3644118-1-andriin@fb.com
2020-01-16 03:55:49 +03:00
return true ;
}
if ( ! sel - > whitelist . cnt & & ! sel - > num_set )
selftests/bpf: add sub-tests support for test_progs
Allow tests to have their own set of sub-tests. Also add ability to do
test/subtest selection using `-t <test-name>/<subtest-name>` and `-n
<test-nums-set>/<subtest-nums-set>`, as an extension of existing -t/-n
selector options. For the <test-num-set> format: it's a comma-separated
list of either individual test numbers (1-based), or range of test
numbers. E.g., all of the following are valid sets of test numbers:
- 10
- 1,2,3
- 1-3
- 5-10,1,3-4
'/<subtest' part is optional, but has the same format. E.g., to select
test #3 and its sub-tests #10 through #15, use: -t 3/10-15.
Similarly, to select tests by name, use `-t verif/strobe`:
$ sudo ./test_progs -t verif/strobe
#3/12 strobemeta.o:OK
#3/13 strobemeta_nounroll1.o:OK
#3/14 strobemeta_nounroll2.o:OK
#3 bpf_verif_scale:OK
Summary: 1/3 PASSED, 0 FAILED
Example of using subtest API is in the next patch, converting
bpf_verif_scale.c tests to use sub-tests.
Signed-off-by: Andrii Nakryiko <andriin@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
2019-07-28 06:25:29 +03:00
return true ;
return num < sel - > num_set_len & & sel - > num_set [ num ] ;
}
2022-04-09 03:17:49 +03:00
static bool should_run_subtest ( struct test_selector * sel ,
struct test_selector * subtest_sel ,
int subtest_num ,
const char * test_name ,
const char * subtest_name )
{
int i , j ;
for ( i = 0 ; i < sel - > blacklist . cnt ; i + + ) {
if ( glob_match ( test_name , sel - > blacklist . tests [ i ] . name ) ) {
if ( ! sel - > blacklist . tests [ i ] . subtest_cnt )
return false ;
for ( j = 0 ; j < sel - > blacklist . tests [ i ] . subtest_cnt ; j + + ) {
if ( glob_match ( subtest_name ,
sel - > blacklist . tests [ i ] . subtests [ j ] ) )
return false ;
}
}
}
for ( i = 0 ; i < sel - > whitelist . cnt ; i + + ) {
if ( glob_match ( test_name , sel - > whitelist . tests [ i ] . name ) ) {
if ( ! sel - > whitelist . tests [ i ] . subtest_cnt )
return true ;
for ( j = 0 ; j < sel - > whitelist . tests [ i ] . subtest_cnt ; j + + ) {
if ( glob_match ( subtest_name ,
sel - > whitelist . tests [ i ] . subtests [ j ] ) )
return true ;
}
}
}
if ( ! sel - > whitelist . cnt & & ! subtest_sel - > num_set )
return true ;
return subtest_num < subtest_sel - > num_set_len & & subtest_sel - > num_set [ subtest_num ] ;
}
2022-04-27 07:13:53 +03:00
static char * test_result ( bool failed , bool skipped )
{
return failed ? " FAIL " : ( skipped ? " SKIP " : " OK " ) ;
}
static void print_test_log ( char * log_buf , size_t log_cnt )
{
log_buf [ log_cnt ] = ' \0 ' ;
fprintf ( env . stdout , " %s " , log_buf ) ;
if ( log_buf [ log_cnt - 1 ] ! = ' \n ' )
fprintf ( env . stdout , " \n " ) ;
}
2022-05-20 10:01:44 +03:00
# define TEST_NUM_WIDTH 7
2022-04-27 07:13:53 +03:00
static void print_test_name ( int test_num , const char * test_name , char * result )
{
2022-05-20 10:01:44 +03:00
fprintf ( env . stdout , " #%-*d %s " , TEST_NUM_WIDTH , test_num , test_name ) ;
2022-04-27 07:13:53 +03:00
if ( result )
fprintf ( env . stdout , " :%s " , result ) ;
fprintf ( env . stdout , " \n " ) ;
}
static void print_subtest_name ( int test_num , int subtest_num ,
const char * test_name , char * subtest_name ,
char * result )
{
2022-05-20 10:01:44 +03:00
char test_num_str [ TEST_NUM_WIDTH + 1 ] ;
snprintf ( test_num_str , sizeof ( test_num_str ) , " %d/%d " , test_num , subtest_num ) ;
fprintf ( env . stdout , " #%-*s %s/%s " ,
TEST_NUM_WIDTH , test_num_str ,
2022-04-27 07:13:53 +03:00
test_name , subtest_name ) ;
if ( result )
fprintf ( env . stdout , " :%s " , result ) ;
fprintf ( env . stdout , " \n " ) ;
}
2022-04-19 01:25:07 +03:00
static void dump_test_log ( const struct prog_test_def * test ,
const struct test_state * test_state ,
2022-04-27 07:13:53 +03:00
bool skip_ok_subtests ,
bool par_exec_result )
selftests/bpf: add sub-tests support for test_progs
Allow tests to have their own set of sub-tests. Also add ability to do
test/subtest selection using `-t <test-name>/<subtest-name>` and `-n
<test-nums-set>/<subtest-nums-set>`, as an extension of existing -t/-n
selector options. For the <test-num-set> format: it's a comma-separated
list of either individual test numbers (1-based), or range of test
numbers. E.g., all of the following are valid sets of test numbers:
- 10
- 1,2,3
- 1-3
- 5-10,1,3-4
'/<subtest' part is optional, but has the same format. E.g., to select
test #3 and its sub-tests #10 through #15, use: -t 3/10-15.
Similarly, to select tests by name, use `-t verif/strobe`:
$ sudo ./test_progs -t verif/strobe
#3/12 strobemeta.o:OK
#3/13 strobemeta_nounroll1.o:OK
#3/14 strobemeta_nounroll2.o:OK
#3 bpf_verif_scale:OK
Summary: 1/3 PASSED, 0 FAILED
Example of using subtest API is in the next patch, converting
bpf_verif_scale.c tests to use sub-tests.
Signed-off-by: Andrii Nakryiko <andriin@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
2019-07-28 06:25:29 +03:00
{
2022-04-27 07:13:53 +03:00
bool test_failed = test_state - > error_cnt > 0 ;
bool force_log = test_state - > force_log ;
bool print_test = verbose ( ) | | force_log | | test_failed ;
int i ;
struct subtest_state * subtest_state ;
bool subtest_failed ;
2022-05-20 09:13:03 +03:00
bool subtest_filtered ;
2022-04-27 07:13:53 +03:00
bool print_subtest ;
2019-08-06 20:45:27 +03:00
2022-04-27 07:13:53 +03:00
/* we do not print anything in the worker thread */
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
if ( env . worker_id ! = - 1 )
return ;
2022-04-27 07:13:53 +03:00
/* there is nothing to print when verbose log is used and execution
* is not in parallel mode
*/
if ( verbose ( ) & & ! par_exec_result )
return ;
if ( test_state - > log_cnt & & print_test )
print_test_log ( test_state - > log_buf , test_state - > log_cnt ) ;
2022-04-19 01:25:07 +03:00
2022-04-27 07:13:53 +03:00
for ( i = 0 ; i < test_state - > subtest_num ; i + + ) {
subtest_state = & test_state - > subtest_states [ i ] ;
subtest_failed = subtest_state - > error_cnt ;
2022-05-20 09:13:03 +03:00
subtest_filtered = subtest_state - > filtered ;
2022-04-27 07:13:53 +03:00
print_subtest = verbose ( ) | | force_log | | subtest_failed ;
2019-08-06 20:45:27 +03:00
2022-05-20 09:13:03 +03:00
if ( ( skip_ok_subtests & & ! subtest_failed ) | | subtest_filtered )
2022-04-27 07:13:53 +03:00
continue ;
if ( subtest_state - > log_cnt & & print_subtest ) {
print_test_log ( subtest_state - > log_buf ,
subtest_state - > log_cnt ) ;
selftests/bpf: add sub-tests support for test_progs
Allow tests to have their own set of sub-tests. Also add ability to do
test/subtest selection using `-t <test-name>/<subtest-name>` and `-n
<test-nums-set>/<subtest-nums-set>`, as an extension of existing -t/-n
selector options. For the <test-num-set> format: it's a comma-separated
list of either individual test numbers (1-based), or range of test
numbers. E.g., all of the following are valid sets of test numbers:
- 10
- 1,2,3
- 1-3
- 5-10,1,3-4
'/<subtest' part is optional, but has the same format. E.g., to select
test #3 and its sub-tests #10 through #15, use: -t 3/10-15.
Similarly, to select tests by name, use `-t verif/strobe`:
$ sudo ./test_progs -t verif/strobe
#3/12 strobemeta.o:OK
#3/13 strobemeta_nounroll1.o:OK
#3/14 strobemeta_nounroll2.o:OK
#3 bpf_verif_scale:OK
Summary: 1/3 PASSED, 0 FAILED
Example of using subtest API is in the next patch, converting
bpf_verif_scale.c tests to use sub-tests.
Signed-off-by: Andrii Nakryiko <andriin@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
2019-07-28 06:25:29 +03:00
}
2022-04-27 07:13:53 +03:00
print_subtest_name ( test - > test_num , i + 1 ,
test - > test_name , subtest_state - > name ,
test_result ( subtest_state - > error_cnt ,
subtest_state - > skipped ) ) ;
selftests/bpf: add sub-tests support for test_progs
Allow tests to have their own set of sub-tests. Also add ability to do
test/subtest selection using `-t <test-name>/<subtest-name>` and `-n
<test-nums-set>/<subtest-nums-set>`, as an extension of existing -t/-n
selector options. For the <test-num-set> format: it's a comma-separated
list of either individual test numbers (1-based), or range of test
numbers. E.g., all of the following are valid sets of test numbers:
- 10
- 1,2,3
- 1-3
- 5-10,1,3-4
'/<subtest' part is optional, but has the same format. E.g., to select
test #3 and its sub-tests #10 through #15, use: -t 3/10-15.
Similarly, to select tests by name, use `-t verif/strobe`:
$ sudo ./test_progs -t verif/strobe
#3/12 strobemeta.o:OK
#3/13 strobemeta_nounroll1.o:OK
#3/14 strobemeta_nounroll2.o:OK
#3 bpf_verif_scale:OK
Summary: 1/3 PASSED, 0 FAILED
Example of using subtest API is in the next patch, converting
bpf_verif_scale.c tests to use sub-tests.
Signed-off-by: Andrii Nakryiko <andriin@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
2019-07-28 06:25:29 +03:00
}
2022-04-27 07:13:53 +03:00
print_test_name ( test - > test_num , test - > test_name ,
test_result ( test_failed , test_state - > skip_cnt ) ) ;
selftests/bpf: add sub-tests support for test_progs
Allow tests to have their own set of sub-tests. Also add ability to do
test/subtest selection using `-t <test-name>/<subtest-name>` and `-n
<test-nums-set>/<subtest-nums-set>`, as an extension of existing -t/-n
selector options. For the <test-num-set> format: it's a comma-separated
list of either individual test numbers (1-based), or range of test
numbers. E.g., all of the following are valid sets of test numbers:
- 10
- 1,2,3
- 1-3
- 5-10,1,3-4
'/<subtest' part is optional, but has the same format. E.g., to select
test #3 and its sub-tests #10 through #15, use: -t 3/10-15.
Similarly, to select tests by name, use `-t verif/strobe`:
$ sudo ./test_progs -t verif/strobe
#3/12 strobemeta.o:OK
#3/13 strobemeta_nounroll1.o:OK
#3/14 strobemeta_nounroll2.o:OK
#3 bpf_verif_scale:OK
Summary: 1/3 PASSED, 0 FAILED
Example of using subtest API is in the next patch, converting
bpf_verif_scale.c tests to use sub-tests.
Signed-off-by: Andrii Nakryiko <andriin@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
2019-07-28 06:25:29 +03:00
}
2020-03-14 04:39:32 +03:00
static void stdio_restore ( void ) ;
/* A bunch of tests set custom affinity per-thread and/or per-process. Reset
* it after each test / sub - test .
*/
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
static void reset_affinity ( void )
{
2020-03-14 04:39:32 +03:00
cpu_set_t cpuset ;
int i , err ;
CPU_ZERO ( & cpuset ) ;
for ( i = 0 ; i < env . nr_cpus ; i + + )
CPU_SET ( i , & cpuset ) ;
err = sched_setaffinity ( 0 , sizeof ( cpuset ) , & cpuset ) ;
if ( err < 0 ) {
stdio_restore ( ) ;
fprintf ( stderr , " Failed to reset process affinity: %d! \n " , err ) ;
2020-07-07 10:12:25 +03:00
exit ( EXIT_ERR_SETUP_INFRA ) ;
2020-03-14 04:39:32 +03:00
}
err = pthread_setaffinity_np ( pthread_self ( ) , sizeof ( cpuset ) , & cpuset ) ;
if ( err < 0 ) {
stdio_restore ( ) ;
fprintf ( stderr , " Failed to reset thread affinity: %d! \n " , err ) ;
2020-07-07 10:12:25 +03:00
exit ( EXIT_ERR_SETUP_INFRA ) ;
2020-03-14 04:39:32 +03:00
}
}
2020-07-02 03:48:58 +03:00
static void save_netns ( void )
{
env . saved_netns_fd = open ( " /proc/self/ns/net " , O_RDONLY ) ;
if ( env . saved_netns_fd = = - 1 ) {
perror ( " open(/proc/self/ns/net) " ) ;
2020-07-07 10:12:25 +03:00
exit ( EXIT_ERR_SETUP_INFRA ) ;
2020-07-02 03:48:58 +03:00
}
}
static void restore_netns ( void )
{
if ( setns ( env . saved_netns_fd , CLONE_NEWNET ) = = - 1 ) {
stdio_restore ( ) ;
perror ( " setns(CLONE_NEWNS) " ) ;
2020-07-07 10:12:25 +03:00
exit ( EXIT_ERR_SETUP_INFRA ) ;
2020-07-02 03:48:58 +03:00
}
}
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
void test__end_subtest ( void )
selftests/bpf: add sub-tests support for test_progs
Allow tests to have their own set of sub-tests. Also add ability to do
test/subtest selection using `-t <test-name>/<subtest-name>` and `-n
<test-nums-set>/<subtest-nums-set>`, as an extension of existing -t/-n
selector options. For the <test-num-set> format: it's a comma-separated
list of either individual test numbers (1-based), or range of test
numbers. E.g., all of the following are valid sets of test numbers:
- 10
- 1,2,3
- 1-3
- 5-10,1,3-4
'/<subtest' part is optional, but has the same format. E.g., to select
test #3 and its sub-tests #10 through #15, use: -t 3/10-15.
Similarly, to select tests by name, use `-t verif/strobe`:
$ sudo ./test_progs -t verif/strobe
#3/12 strobemeta.o:OK
#3/13 strobemeta_nounroll1.o:OK
#3/14 strobemeta_nounroll2.o:OK
#3 bpf_verif_scale:OK
Summary: 1/3 PASSED, 0 FAILED
Example of using subtest API is in the next patch, converting
bpf_verif_scale.c tests to use sub-tests.
Signed-off-by: Andrii Nakryiko <andriin@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
2019-07-28 06:25:29 +03:00
{
struct prog_test_def * test = env . test ;
2022-04-27 07:13:53 +03:00
struct test_state * test_state = env . test_state ;
struct subtest_state * subtest_state = env . subtest_state ;
if ( subtest_state - > error_cnt ) {
test_state - > error_cnt + + ;
} else {
if ( ! subtest_state - > skipped )
test_state - > sub_succ_cnt + + ;
else
test_state - > skip_cnt + + ;
2022-04-19 01:25:07 +03:00
}
2021-08-17 07:47:30 +03:00
2022-04-27 07:13:53 +03:00
if ( verbose ( ) & & ! env . workers )
print_subtest_name ( test - > test_num , test_state - > subtest_num ,
test - > test_name , subtest_state - > name ,
test_result ( subtest_state - > error_cnt ,
subtest_state - > skipped ) ) ;
stdio_restore_cleanup ( ) ;
env . subtest_state = NULL ;
selftests/bpf: add sub-tests support for test_progs
Allow tests to have their own set of sub-tests. Also add ability to do
test/subtest selection using `-t <test-name>/<subtest-name>` and `-n
<test-nums-set>/<subtest-nums-set>`, as an extension of existing -t/-n
selector options. For the <test-num-set> format: it's a comma-separated
list of either individual test numbers (1-based), or range of test
numbers. E.g., all of the following are valid sets of test numbers:
- 10
- 1,2,3
- 1-3
- 5-10,1,3-4
'/<subtest' part is optional, but has the same format. E.g., to select
test #3 and its sub-tests #10 through #15, use: -t 3/10-15.
Similarly, to select tests by name, use `-t verif/strobe`:
$ sudo ./test_progs -t verif/strobe
#3/12 strobemeta.o:OK
#3/13 strobemeta_nounroll1.o:OK
#3/14 strobemeta_nounroll2.o:OK
#3 bpf_verif_scale:OK
Summary: 1/3 PASSED, 0 FAILED
Example of using subtest API is in the next patch, converting
bpf_verif_scale.c tests to use sub-tests.
Signed-off-by: Andrii Nakryiko <andriin@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
2019-07-28 06:25:29 +03:00
}
2022-04-09 03:17:49 +03:00
bool test__start_subtest ( const char * subtest_name )
selftests/bpf: add sub-tests support for test_progs
Allow tests to have their own set of sub-tests. Also add ability to do
test/subtest selection using `-t <test-name>/<subtest-name>` and `-n
<test-nums-set>/<subtest-nums-set>`, as an extension of existing -t/-n
selector options. For the <test-num-set> format: it's a comma-separated
list of either individual test numbers (1-based), or range of test
numbers. E.g., all of the following are valid sets of test numbers:
- 10
- 1,2,3
- 1-3
- 5-10,1,3-4
'/<subtest' part is optional, but has the same format. E.g., to select
test #3 and its sub-tests #10 through #15, use: -t 3/10-15.
Similarly, to select tests by name, use `-t verif/strobe`:
$ sudo ./test_progs -t verif/strobe
#3/12 strobemeta.o:OK
#3/13 strobemeta_nounroll1.o:OK
#3/14 strobemeta_nounroll2.o:OK
#3 bpf_verif_scale:OK
Summary: 1/3 PASSED, 0 FAILED
Example of using subtest API is in the next patch, converting
bpf_verif_scale.c tests to use sub-tests.
Signed-off-by: Andrii Nakryiko <andriin@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
2019-07-28 06:25:29 +03:00
{
struct prog_test_def * test = env . test ;
2022-04-19 01:25:07 +03:00
struct test_state * state = env . test_state ;
2022-04-27 07:13:53 +03:00
struct subtest_state * subtest_state ;
size_t sub_state_size = sizeof ( * subtest_state ) ;
selftests/bpf: add sub-tests support for test_progs
Allow tests to have their own set of sub-tests. Also add ability to do
test/subtest selection using `-t <test-name>/<subtest-name>` and `-n
<test-nums-set>/<subtest-nums-set>`, as an extension of existing -t/-n
selector options. For the <test-num-set> format: it's a comma-separated
list of either individual test numbers (1-based), or range of test
numbers. E.g., all of the following are valid sets of test numbers:
- 10
- 1,2,3
- 1-3
- 5-10,1,3-4
'/<subtest' part is optional, but has the same format. E.g., to select
test #3 and its sub-tests #10 through #15, use: -t 3/10-15.
Similarly, to select tests by name, use `-t verif/strobe`:
$ sudo ./test_progs -t verif/strobe
#3/12 strobemeta.o:OK
#3/13 strobemeta_nounroll1.o:OK
#3/14 strobemeta_nounroll2.o:OK
#3 bpf_verif_scale:OK
Summary: 1/3 PASSED, 0 FAILED
Example of using subtest API is in the next patch, converting
bpf_verif_scale.c tests to use sub-tests.
Signed-off-by: Andrii Nakryiko <andriin@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
2019-07-28 06:25:29 +03:00
2022-04-27 07:13:53 +03:00
if ( env . subtest_state )
selftests/bpf: add sub-tests support for test_progs
Allow tests to have their own set of sub-tests. Also add ability to do
test/subtest selection using `-t <test-name>/<subtest-name>` and `-n
<test-nums-set>/<subtest-nums-set>`, as an extension of existing -t/-n
selector options. For the <test-num-set> format: it's a comma-separated
list of either individual test numbers (1-based), or range of test
numbers. E.g., all of the following are valid sets of test numbers:
- 10
- 1,2,3
- 1-3
- 5-10,1,3-4
'/<subtest' part is optional, but has the same format. E.g., to select
test #3 and its sub-tests #10 through #15, use: -t 3/10-15.
Similarly, to select tests by name, use `-t verif/strobe`:
$ sudo ./test_progs -t verif/strobe
#3/12 strobemeta.o:OK
#3/13 strobemeta_nounroll1.o:OK
#3/14 strobemeta_nounroll2.o:OK
#3 bpf_verif_scale:OK
Summary: 1/3 PASSED, 0 FAILED
Example of using subtest API is in the next patch, converting
bpf_verif_scale.c tests to use sub-tests.
Signed-off-by: Andrii Nakryiko <andriin@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
2019-07-28 06:25:29 +03:00
test__end_subtest ( ) ;
2022-04-19 01:25:07 +03:00
state - > subtest_num + + ;
2022-04-27 07:13:53 +03:00
state - > subtest_states =
realloc ( state - > subtest_states ,
state - > subtest_num * sub_state_size ) ;
if ( ! state - > subtest_states ) {
fprintf ( stderr , " Not enough memory to allocate subtest result \n " ) ;
return false ;
}
subtest_state = & state - > subtest_states [ state - > subtest_num - 1 ] ;
memset ( subtest_state , 0 , sub_state_size ) ;
selftests/bpf: add sub-tests support for test_progs
Allow tests to have their own set of sub-tests. Also add ability to do
test/subtest selection using `-t <test-name>/<subtest-name>` and `-n
<test-nums-set>/<subtest-nums-set>`, as an extension of existing -t/-n
selector options. For the <test-num-set> format: it's a comma-separated
list of either individual test numbers (1-based), or range of test
numbers. E.g., all of the following are valid sets of test numbers:
- 10
- 1,2,3
- 1-3
- 5-10,1,3-4
'/<subtest' part is optional, but has the same format. E.g., to select
test #3 and its sub-tests #10 through #15, use: -t 3/10-15.
Similarly, to select tests by name, use `-t verif/strobe`:
$ sudo ./test_progs -t verif/strobe
#3/12 strobemeta.o:OK
#3/13 strobemeta_nounroll1.o:OK
#3/14 strobemeta_nounroll2.o:OK
#3 bpf_verif_scale:OK
Summary: 1/3 PASSED, 0 FAILED
Example of using subtest API is in the next patch, converting
bpf_verif_scale.c tests to use sub-tests.
Signed-off-by: Andrii Nakryiko <andriin@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
2019-07-28 06:25:29 +03:00
2022-04-09 03:17:49 +03:00
if ( ! subtest_name | | ! subtest_name [ 0 ] ) {
2019-08-06 20:45:27 +03:00
fprintf ( env . stderr ,
" Subtest #%d didn't provide sub-test name! \n " ,
2022-04-19 01:25:07 +03:00
state - > subtest_num ) ;
selftests/bpf: add sub-tests support for test_progs
Allow tests to have their own set of sub-tests. Also add ability to do
test/subtest selection using `-t <test-name>/<subtest-name>` and `-n
<test-nums-set>/<subtest-nums-set>`, as an extension of existing -t/-n
selector options. For the <test-num-set> format: it's a comma-separated
list of either individual test numbers (1-based), or range of test
numbers. E.g., all of the following are valid sets of test numbers:
- 10
- 1,2,3
- 1-3
- 5-10,1,3-4
'/<subtest' part is optional, but has the same format. E.g., to select
test #3 and its sub-tests #10 through #15, use: -t 3/10-15.
Similarly, to select tests by name, use `-t verif/strobe`:
$ sudo ./test_progs -t verif/strobe
#3/12 strobemeta.o:OK
#3/13 strobemeta_nounroll1.o:OK
#3/14 strobemeta_nounroll2.o:OK
#3 bpf_verif_scale:OK
Summary: 1/3 PASSED, 0 FAILED
Example of using subtest API is in the next patch, converting
bpf_verif_scale.c tests to use sub-tests.
Signed-off-by: Andrii Nakryiko <andriin@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
2019-07-28 06:25:29 +03:00
return false ;
}
2022-04-27 07:13:53 +03:00
subtest_state - > name = strdup ( subtest_name ) ;
if ( ! subtest_state - > name ) {
fprintf ( env . stderr ,
" Subtest #%d: failed to copy subtest name! \n " ,
state - > subtest_num ) ;
return false ;
}
2022-04-09 03:17:49 +03:00
if ( ! should_run_subtest ( & env . test_selector ,
& env . subtest_selector ,
2022-04-19 01:25:07 +03:00
state - > subtest_num ,
2022-04-09 03:17:49 +03:00
test - > test_name ,
2022-04-27 07:13:53 +03:00
subtest_name ) ) {
2022-05-20 09:13:03 +03:00
subtest_state - > filtered = true ;
2019-10-21 06:39:00 +03:00
return false ;
}
2022-04-27 07:13:53 +03:00
env . subtest_state = subtest_state ;
stdio_hijack_init ( & subtest_state - > log_buf , & subtest_state - > log_cnt ) ;
selftests/bpf: add sub-tests support for test_progs
Allow tests to have their own set of sub-tests. Also add ability to do
test/subtest selection using `-t <test-name>/<subtest-name>` and `-n
<test-nums-set>/<subtest-nums-set>`, as an extension of existing -t/-n
selector options. For the <test-num-set> format: it's a comma-separated
list of either individual test numbers (1-based), or range of test
numbers. E.g., all of the following are valid sets of test numbers:
- 10
- 1,2,3
- 1-3
- 5-10,1,3-4
'/<subtest' part is optional, but has the same format. E.g., to select
test #3 and its sub-tests #10 through #15, use: -t 3/10-15.
Similarly, to select tests by name, use `-t verif/strobe`:
$ sudo ./test_progs -t verif/strobe
#3/12 strobemeta.o:OK
#3/13 strobemeta_nounroll1.o:OK
#3/14 strobemeta_nounroll2.o:OK
#3 bpf_verif_scale:OK
Summary: 1/3 PASSED, 0 FAILED
Example of using subtest API is in the next patch, converting
bpf_verif_scale.c tests to use sub-tests.
Signed-off-by: Andrii Nakryiko <andriin@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
2019-07-28 06:25:29 +03:00
return true ;
}
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
void test__force_log ( void )
{
2022-04-19 01:25:07 +03:00
env . test_state - > force_log = true ;
2019-07-28 06:25:28 +03:00
}
2019-08-22 02:44:24 +03:00
void test__skip ( void )
{
2022-04-27 07:13:53 +03:00
if ( env . subtest_state )
env . subtest_state - > skipped = true ;
2022-04-19 01:25:07 +03:00
else
env . test_state - > skip_cnt + + ;
2019-08-22 02:44:24 +03:00
}
2019-08-22 02:44:25 +03:00
void test__fail ( void )
{
2022-04-27 07:13:53 +03:00
if ( env . subtest_state )
env . subtest_state - > error_cnt + + ;
else
env . test_state - > error_cnt + + ;
2019-08-22 02:44:25 +03:00
}
2019-09-04 19:25:04 +03:00
int test__join_cgroup ( const char * path )
{
int fd ;
if ( ! env . test - > need_cgroup_cleanup ) {
if ( setup_cgroup_environment ( ) ) {
fprintf ( stderr ,
" #%d %s: Failed to setup cgroup environment \n " ,
env . test - > test_num , env . test - > test_name ) ;
return - 1 ;
}
env . test - > need_cgroup_cleanup = true ;
}
fd = create_and_get_cgroup ( path ) ;
if ( fd < 0 ) {
fprintf ( stderr ,
" #%d %s: Failed to create cgroup '%s' (errno=%d) \n " ,
env . test - > test_num , env . test - > test_name , path , errno ) ;
return fd ;
}
if ( join_cgroup ( path ) ) {
fprintf ( stderr ,
" #%d %s: Failed to join cgroup '%s' (errno=%d) \n " ,
env . test - > test_num , env . test - > test_name , path , errno ) ;
return - 1 ;
}
return fd ;
}
2019-03-02 06:42:13 +03:00
int bpf_find_map ( const char * test , struct bpf_object * obj , const char * name )
2017-03-31 07:45:42 +03:00
{
struct bpf_map * map ;
map = bpf_object__find_map_by_name ( obj , name ) ;
if ( ! map ) {
2020-03-13 20:23:33 +03:00
fprintf ( stdout , " %s:FAIL:map '%s' not found \n " , test , name ) ;
2019-08-22 02:44:25 +03:00
test__fail ( ) ;
2017-03-31 07:45:42 +03:00
return - 1 ;
}
return bpf_map__fd ( map ) ;
}
2018-04-29 08:28:15 +03:00
static bool is_jit_enabled ( void )
{
const char * jit_sysctl = " /proc/sys/net/core/bpf_jit_enable " ;
bool enabled = false ;
int sysctl_fd ;
sysctl_fd = open ( jit_sysctl , 0 , O_RDONLY ) ;
if ( sysctl_fd ! = - 1 ) {
char tmpc ;
if ( read ( sysctl_fd , & tmpc , sizeof ( tmpc ) ) = = 1 )
enabled = ( tmpc ! = ' 0 ' ) ;
close ( sysctl_fd ) ;
}
return enabled ;
}
2019-03-02 06:42:16 +03:00
int compare_map_keys ( int map1_fd , int map2_fd )
2018-01-05 00:55:04 +03:00
{
__u32 key , next_key ;
2018-03-14 20:23:22 +03:00
char val_buf [ PERF_MAX_STACK_DEPTH *
sizeof ( struct bpf_stack_build_id ) ] ;
2018-01-05 00:55:04 +03:00
int err ;
err = bpf_map_get_next_key ( map1_fd , NULL , & key ) ;
if ( err )
return err ;
err = bpf_map_lookup_elem ( map2_fd , & key , val_buf ) ;
if ( err )
return err ;
while ( bpf_map_get_next_key ( map1_fd , & key , & next_key ) = = 0 ) {
err = bpf_map_lookup_elem ( map2_fd , & next_key , val_buf ) ;
if ( err )
return err ;
key = next_key ;
}
if ( errno ! = ENOENT )
return - 1 ;
return 0 ;
}
2019-03-02 06:42:16 +03:00
int compare_stack_ips ( int smap_fd , int amap_fd , int stack_trace_len )
2018-04-29 08:28:16 +03:00
{
__u32 key , next_key , * cur_key_p , * next_key_p ;
char * val_buf1 , * val_buf2 ;
int i , err = 0 ;
val_buf1 = malloc ( stack_trace_len ) ;
val_buf2 = malloc ( stack_trace_len ) ;
cur_key_p = NULL ;
next_key_p = & key ;
while ( bpf_map_get_next_key ( smap_fd , cur_key_p , next_key_p ) = = 0 ) {
err = bpf_map_lookup_elem ( smap_fd , next_key_p , val_buf1 ) ;
if ( err )
goto out ;
err = bpf_map_lookup_elem ( amap_fd , next_key_p , val_buf2 ) ;
if ( err )
goto out ;
for ( i = 0 ; i < stack_trace_len ; i + + ) {
if ( val_buf1 [ i ] ! = val_buf2 [ i ] ) {
err = - 1 ;
goto out ;
}
}
key = * next_key_p ;
cur_key_p = & key ;
next_key_p = & next_key ;
}
if ( errno ! = ENOENT )
err = - 1 ;
out :
free ( val_buf1 ) ;
free ( val_buf2 ) ;
return err ;
}
2019-03-02 06:42:16 +03:00
int extract_build_id ( char * build_id , size_t size )
2018-03-14 20:23:22 +03:00
{
FILE * fp ;
char * line = NULL ;
size_t len = 0 ;
fp = popen ( " readelf -n ./urandom_read | grep 'Build ID' " , " r " ) ;
if ( fp = = NULL )
return - 1 ;
if ( getline ( & line , & len , fp ) = = - 1 )
goto err ;
2021-10-26 17:34:09 +03:00
pclose ( fp ) ;
2018-03-14 20:23:22 +03:00
if ( len > size )
len = size ;
memcpy ( build_id , line , len ) ;
build_id [ len ] = ' \0 ' ;
2020-04-29 04:21:06 +03:00
free ( line ) ;
2018-03-14 20:23:22 +03:00
return 0 ;
err :
2021-10-26 17:34:09 +03:00
pclose ( fp ) ;
2018-03-14 20:23:22 +03:00
return - 1 ;
}
2020-12-03 23:46:26 +03:00
static int finit_module ( int fd , const char * param_values , int flags )
{
return syscall ( __NR_finit_module , fd , param_values , flags ) ;
}
static int delete_module ( const char * name , int flags )
{
return syscall ( __NR_delete_module , name , flags ) ;
}
2021-01-12 10:55:17 +03:00
/*
* Trigger synchronize_rcu ( ) in kernel .
*/
int kern_sync_rcu ( void )
{
return syscall ( __NR_membarrier , MEMBARRIER_CMD_SHARED , 0 , 0 ) ;
}
2020-12-03 23:46:26 +03:00
static void unload_bpf_testmod ( void )
{
2021-01-12 10:55:17 +03:00
if ( kern_sync_rcu ( ) )
fprintf ( env . stderr , " Failed to trigger kernel-side RCU sync! \n " ) ;
2020-12-03 23:46:26 +03:00
if ( delete_module ( " bpf_testmod " , 0 ) ) {
if ( errno = = ENOENT ) {
2022-04-27 07:13:53 +03:00
if ( verbose ( ) )
2020-12-03 23:46:26 +03:00
fprintf ( stdout , " bpf_testmod.ko is already unloaded. \n " ) ;
return ;
}
fprintf ( env . stderr , " Failed to unload bpf_testmod.ko from kernel: %d \n " , - errno ) ;
2021-01-26 09:50:18 +03:00
return ;
2020-12-03 23:46:26 +03:00
}
2022-04-27 07:13:53 +03:00
if ( verbose ( ) )
2020-12-03 23:46:26 +03:00
fprintf ( stdout , " Successfully unloaded bpf_testmod.ko. \n " ) ;
}
static int load_bpf_testmod ( void )
{
int fd ;
/* ensure previous instance of the module is unloaded */
unload_bpf_testmod ( ) ;
2022-04-27 07:13:53 +03:00
if ( verbose ( ) )
2020-12-03 23:46:26 +03:00
fprintf ( stdout , " Loading bpf_testmod.ko... \n " ) ;
fd = open ( " bpf_testmod.ko " , O_RDONLY ) ;
if ( fd < 0 ) {
fprintf ( env . stderr , " Can't find bpf_testmod.ko kernel module: %d \n " , - errno ) ;
return - ENOENT ;
}
if ( finit_module ( fd , " " , 0 ) ) {
fprintf ( env . stderr , " Failed to load bpf_testmod.ko into the kernel: %d \n " , - errno ) ;
close ( fd ) ;
return - EINVAL ;
}
close ( fd ) ;
2022-04-27 07:13:53 +03:00
if ( verbose ( ) )
2020-12-03 23:46:26 +03:00
fprintf ( stdout , " Successfully loaded bpf_testmod.ko. \n " ) ;
return 0 ;
}
2019-07-28 06:25:24 +03:00
/* extern declarations for test funcs */
2021-10-06 21:56:07 +03:00
# define DEFINE_TEST(name) \
extern void test_ # # name ( void ) __weak ; \
extern void serial_test_ # # name ( void ) __weak ;
2019-03-02 06:42:13 +03:00
# include <prog_tests/tests.h>
2019-07-28 06:25:24 +03:00
# undef DEFINE_TEST
2019-03-02 06:42:13 +03:00
2019-07-28 06:25:24 +03:00
static struct prog_test_def prog_test_defs [ ] = {
2021-10-06 21:56:07 +03:00
# define DEFINE_TEST(name) { \
. test_name = # name , \
. run_test = & test_ # # name , \
. run_serial_test = & serial_test_ # # name , \
2019-07-28 06:25:24 +03:00
} ,
# include <prog_tests/tests.h>
# undef DEFINE_TEST
} ;
2022-04-19 01:25:07 +03:00
2021-11-12 22:25:34 +03:00
static const int prog_test_cnt = ARRAY_SIZE ( prog_test_defs ) ;
2019-07-28 06:25:24 +03:00
2022-04-19 01:25:07 +03:00
static struct test_state test_states [ ARRAY_SIZE ( prog_test_defs ) ] ;
2019-07-28 06:25:24 +03:00
const char * argp_program_version = " test_progs 0.1 " ;
const char * argp_program_bug_address = " <bpf@vger.kernel.org> " ;
2021-11-12 22:25:34 +03:00
static const char argp_program_doc [ ] = " BPF selftests test runner " ;
2019-07-28 06:25:24 +03:00
enum ARG_KEYS {
2019-07-28 06:25:25 +03:00
ARG_TEST_NUM = ' n ' ,
ARG_TEST_NAME = ' t ' ,
selftests/bpf: Add whitelist/blacklist of test names to test_progs
Add ability to specify a list of test name substrings for selecting which
tests to run. So now -t is accepting a comma-separated list of strings,
similarly to how -n accepts a comma-separated list of test numbers.
Additionally, add ability to blacklist tests by name. Blacklist takes
precedence over whitelist. Blacklisting is important for cases where it's
known that some tests can't pass (e.g., due to perf hardware events that are
not available within VM). This is going to be used for libbpf testing in
Travis CI in its Github repo.
Example runs with just whitelist and whitelist + blacklist:
$ sudo ./test_progs -tattach,core/existence
#1 attach_probe:OK
#6 cgroup_attach_autodetach:OK
#7 cgroup_attach_multi:OK
#8 cgroup_attach_override:OK
#9 core_extern:OK
#10/44 existence:OK
#10/45 existence___minimal:OK
#10/46 existence__err_int_sz:OK
#10/47 existence__err_int_type:OK
#10/48 existence__err_int_kind:OK
#10/49 existence__err_arr_kind:OK
#10/50 existence__err_arr_value_type:OK
#10/51 existence__err_struct_type:OK
#10 core_reloc:OK
#19 flow_dissector_reattach:OK
#60 tp_attach_query:OK
Summary: 8/8 PASSED, 0 SKIPPED, 0 FAILED
$ sudo ./test_progs -tattach,core/existence -bcgroup,flow/arr
#1 attach_probe:OK
#9 core_extern:OK
#10/44 existence:OK
#10/45 existence___minimal:OK
#10/46 existence__err_int_sz:OK
#10/47 existence__err_int_type:OK
#10/48 existence__err_int_kind:OK
#10/51 existence__err_struct_type:OK
#10 core_reloc:OK
#60 tp_attach_query:OK
Summary: 4/6 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Andrii Nakryiko <andriin@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Cc: Julia Kartseva <hex@fb.com>
Link: https://lore.kernel.org/bpf/20200116005549.3644118-1-andriin@fb.com
2020-01-16 03:55:49 +03:00
ARG_TEST_NAME_BLACKLIST = ' b ' ,
2019-07-28 06:25:24 +03:00
ARG_VERIFIER_STATS = ' s ' ,
2019-07-28 06:25:27 +03:00
ARG_VERBOSE = ' v ' ,
2020-07-02 00:44:12 +03:00
ARG_GET_TEST_CNT = ' c ' ,
2020-07-02 00:44:17 +03:00
ARG_LIST_TEST_NAMES = ' l ' ,
2021-08-17 07:47:32 +03:00
ARG_TEST_NAME_GLOB_ALLOWLIST = ' a ' ,
ARG_TEST_NAME_GLOB_DENYLIST = ' d ' ,
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
ARG_NUM_WORKERS = ' j ' ,
ARG_DEBUG = - 1 ,
2019-07-28 06:25:24 +03:00
} ;
2019-08-06 20:45:29 +03:00
2019-07-28 06:25:24 +03:00
static const struct argp_option opts [ ] = {
2019-07-28 06:25:25 +03:00
{ " num " , ARG_TEST_NUM , " NUM " , 0 ,
" Run test number NUM only " } ,
selftests/bpf: Add whitelist/blacklist of test names to test_progs
Add ability to specify a list of test name substrings for selecting which
tests to run. So now -t is accepting a comma-separated list of strings,
similarly to how -n accepts a comma-separated list of test numbers.
Additionally, add ability to blacklist tests by name. Blacklist takes
precedence over whitelist. Blacklisting is important for cases where it's
known that some tests can't pass (e.g., due to perf hardware events that are
not available within VM). This is going to be used for libbpf testing in
Travis CI in its Github repo.
Example runs with just whitelist and whitelist + blacklist:
$ sudo ./test_progs -tattach,core/existence
#1 attach_probe:OK
#6 cgroup_attach_autodetach:OK
#7 cgroup_attach_multi:OK
#8 cgroup_attach_override:OK
#9 core_extern:OK
#10/44 existence:OK
#10/45 existence___minimal:OK
#10/46 existence__err_int_sz:OK
#10/47 existence__err_int_type:OK
#10/48 existence__err_int_kind:OK
#10/49 existence__err_arr_kind:OK
#10/50 existence__err_arr_value_type:OK
#10/51 existence__err_struct_type:OK
#10 core_reloc:OK
#19 flow_dissector_reattach:OK
#60 tp_attach_query:OK
Summary: 8/8 PASSED, 0 SKIPPED, 0 FAILED
$ sudo ./test_progs -tattach,core/existence -bcgroup,flow/arr
#1 attach_probe:OK
#9 core_extern:OK
#10/44 existence:OK
#10/45 existence___minimal:OK
#10/46 existence__err_int_sz:OK
#10/47 existence__err_int_type:OK
#10/48 existence__err_int_kind:OK
#10/51 existence__err_struct_type:OK
#10 core_reloc:OK
#60 tp_attach_query:OK
Summary: 4/6 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Andrii Nakryiko <andriin@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Cc: Julia Kartseva <hex@fb.com>
Link: https://lore.kernel.org/bpf/20200116005549.3644118-1-andriin@fb.com
2020-01-16 03:55:49 +03:00
{ " name " , ARG_TEST_NAME , " NAMES " , 0 ,
" Run tests with names containing any string from NAMES list " } ,
{ " name-blacklist " , ARG_TEST_NAME_BLACKLIST , " NAMES " , 0 ,
" Don't run tests with names containing any string from NAMES list " } ,
2019-07-28 06:25:24 +03:00
{ " verifier-stats " , ARG_VERIFIER_STATS , NULL , 0 ,
" Output verifier statistics " , } ,
2019-07-28 06:25:27 +03:00
{ " verbose " , ARG_VERBOSE , " LEVEL " , OPTION_ARG_OPTIONAL ,
2019-11-20 03:35:48 +03:00
" Verbose output (use -vv or -vvv for progressively verbose output) " } ,
2020-07-02 00:44:12 +03:00
{ " count " , ARG_GET_TEST_CNT , NULL , 0 ,
" Get number of selected top-level tests " } ,
2020-07-02 00:44:17 +03:00
{ " list " , ARG_LIST_TEST_NAMES , NULL , 0 ,
" List test names that would run (without running them) " } ,
2021-08-17 07:47:32 +03:00
{ " allow " , ARG_TEST_NAME_GLOB_ALLOWLIST , " NAMES " , 0 ,
" Run tests with name matching the pattern (supports '*' wildcard). " } ,
{ " deny " , ARG_TEST_NAME_GLOB_DENYLIST , " NAMES " , 0 ,
" Don't run tests with name matching the pattern (supports '*' wildcard). " } ,
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
{ " workers " , ARG_NUM_WORKERS , " WORKERS " , OPTION_ARG_OPTIONAL ,
" Number of workers to run in parallel, default to number of cpus. " } ,
{ " debug " , ARG_DEBUG , NULL , 0 ,
" print extra debug information for test_progs. " } ,
2019-07-28 06:25:24 +03:00
{ } ,
} ;
2019-07-28 06:25:27 +03:00
static int libbpf_print_fn ( enum libbpf_print_level level ,
const char * format , va_list args )
{
2019-11-20 03:35:48 +03:00
if ( env . verbosity < VERBOSE_VERY & & level = = LIBBPF_DEBUG )
2019-07-28 06:25:27 +03:00
return 0 ;
2020-03-13 20:23:33 +03:00
vfprintf ( stdout , format , args ) ;
2019-07-28 06:25:28 +03:00
return 0 ;
2019-07-28 06:25:27 +03:00
}
2022-04-09 03:17:49 +03:00
static void free_test_filter_set ( const struct test_filter_set * set )
2020-04-29 04:21:05 +03:00
{
2022-04-09 03:17:49 +03:00
int i , j ;
2020-04-29 04:21:05 +03:00
if ( ! set )
return ;
2022-04-09 03:17:49 +03:00
for ( i = 0 ; i < set - > cnt ; i + + ) {
free ( ( void * ) set - > tests [ i ] . name ) ;
for ( j = 0 ; j < set - > tests [ i ] . subtest_cnt ; j + + )
free ( ( void * ) set - > tests [ i ] . subtests [ j ] ) ;
selftests/bpf: Add whitelist/blacklist of test names to test_progs
Add ability to specify a list of test name substrings for selecting which
tests to run. So now -t is accepting a comma-separated list of strings,
similarly to how -n accepts a comma-separated list of test numbers.
Additionally, add ability to blacklist tests by name. Blacklist takes
precedence over whitelist. Blacklisting is important for cases where it's
known that some tests can't pass (e.g., due to perf hardware events that are
not available within VM). This is going to be used for libbpf testing in
Travis CI in its Github repo.
Example runs with just whitelist and whitelist + blacklist:
$ sudo ./test_progs -tattach,core/existence
#1 attach_probe:OK
#6 cgroup_attach_autodetach:OK
#7 cgroup_attach_multi:OK
#8 cgroup_attach_override:OK
#9 core_extern:OK
#10/44 existence:OK
#10/45 existence___minimal:OK
#10/46 existence__err_int_sz:OK
#10/47 existence__err_int_type:OK
#10/48 existence__err_int_kind:OK
#10/49 existence__err_arr_kind:OK
#10/50 existence__err_arr_value_type:OK
#10/51 existence__err_struct_type:OK
#10 core_reloc:OK
#19 flow_dissector_reattach:OK
#60 tp_attach_query:OK
Summary: 8/8 PASSED, 0 SKIPPED, 0 FAILED
$ sudo ./test_progs -tattach,core/existence -bcgroup,flow/arr
#1 attach_probe:OK
#9 core_extern:OK
#10/44 existence:OK
#10/45 existence___minimal:OK
#10/46 existence__err_int_sz:OK
#10/47 existence__err_int_type:OK
#10/48 existence__err_int_kind:OK
#10/51 existence__err_struct_type:OK
#10 core_reloc:OK
#60 tp_attach_query:OK
Summary: 4/6 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Andrii Nakryiko <andriin@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Cc: Julia Kartseva <hex@fb.com>
Link: https://lore.kernel.org/bpf/20200116005549.3644118-1-andriin@fb.com
2020-01-16 03:55:49 +03:00
2022-04-09 03:17:49 +03:00
free ( ( void * ) set - > tests [ i ] . subtests ) ;
selftests/bpf: Add whitelist/blacklist of test names to test_progs
Add ability to specify a list of test name substrings for selecting which
tests to run. So now -t is accepting a comma-separated list of strings,
similarly to how -n accepts a comma-separated list of test numbers.
Additionally, add ability to blacklist tests by name. Blacklist takes
precedence over whitelist. Blacklisting is important for cases where it's
known that some tests can't pass (e.g., due to perf hardware events that are
not available within VM). This is going to be used for libbpf testing in
Travis CI in its Github repo.
Example runs with just whitelist and whitelist + blacklist:
$ sudo ./test_progs -tattach,core/existence
#1 attach_probe:OK
#6 cgroup_attach_autodetach:OK
#7 cgroup_attach_multi:OK
#8 cgroup_attach_override:OK
#9 core_extern:OK
#10/44 existence:OK
#10/45 existence___minimal:OK
#10/46 existence__err_int_sz:OK
#10/47 existence__err_int_type:OK
#10/48 existence__err_int_kind:OK
#10/49 existence__err_arr_kind:OK
#10/50 existence__err_arr_value_type:OK
#10/51 existence__err_struct_type:OK
#10 core_reloc:OK
#19 flow_dissector_reattach:OK
#60 tp_attach_query:OK
Summary: 8/8 PASSED, 0 SKIPPED, 0 FAILED
$ sudo ./test_progs -tattach,core/existence -bcgroup,flow/arr
#1 attach_probe:OK
#9 core_extern:OK
#10/44 existence:OK
#10/45 existence___minimal:OK
#10/46 existence__err_int_sz:OK
#10/47 existence__err_int_type:OK
#10/48 existence__err_int_kind:OK
#10/51 existence__err_struct_type:OK
#10 core_reloc:OK
#60 tp_attach_query:OK
Summary: 4/6 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Andrii Nakryiko <andriin@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Cc: Julia Kartseva <hex@fb.com>
Link: https://lore.kernel.org/bpf/20200116005549.3644118-1-andriin@fb.com
2020-01-16 03:55:49 +03:00
}
2022-04-09 03:17:49 +03:00
free ( ( void * ) set - > tests ) ;
}
2021-08-17 07:47:32 +03:00
2022-04-09 03:17:49 +03:00
static void free_test_selector ( struct test_selector * test_selector )
{
free_test_filter_set ( & test_selector - > blacklist ) ;
free_test_filter_set ( & test_selector - > whitelist ) ;
free ( test_selector - > num_set ) ;
selftests/bpf: Add whitelist/blacklist of test names to test_progs
Add ability to specify a list of test name substrings for selecting which
tests to run. So now -t is accepting a comma-separated list of strings,
similarly to how -n accepts a comma-separated list of test numbers.
Additionally, add ability to blacklist tests by name. Blacklist takes
precedence over whitelist. Blacklisting is important for cases where it's
known that some tests can't pass (e.g., due to perf hardware events that are
not available within VM). This is going to be used for libbpf testing in
Travis CI in its Github repo.
Example runs with just whitelist and whitelist + blacklist:
$ sudo ./test_progs -tattach,core/existence
#1 attach_probe:OK
#6 cgroup_attach_autodetach:OK
#7 cgroup_attach_multi:OK
#8 cgroup_attach_override:OK
#9 core_extern:OK
#10/44 existence:OK
#10/45 existence___minimal:OK
#10/46 existence__err_int_sz:OK
#10/47 existence__err_int_type:OK
#10/48 existence__err_int_kind:OK
#10/49 existence__err_arr_kind:OK
#10/50 existence__err_arr_value_type:OK
#10/51 existence__err_struct_type:OK
#10 core_reloc:OK
#19 flow_dissector_reattach:OK
#60 tp_attach_query:OK
Summary: 8/8 PASSED, 0 SKIPPED, 0 FAILED
$ sudo ./test_progs -tattach,core/existence -bcgroup,flow/arr
#1 attach_probe:OK
#9 core_extern:OK
#10/44 existence:OK
#10/45 existence___minimal:OK
#10/46 existence__err_int_sz:OK
#10/47 existence__err_int_type:OK
#10/48 existence__err_int_kind:OK
#10/51 existence__err_struct_type:OK
#10 core_reloc:OK
#60 tp_attach_query:OK
Summary: 4/6 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Andrii Nakryiko <andriin@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Cc: Julia Kartseva <hex@fb.com>
Link: https://lore.kernel.org/bpf/20200116005549.3644118-1-andriin@fb.com
2020-01-16 03:55:49 +03:00
}
2019-11-20 03:35:48 +03:00
extern int extra_prog_load_log_flags ;
2019-07-28 06:25:24 +03:00
static error_t parse_arg ( int key , char * arg , struct argp_state * state )
2017-03-31 07:45:41 +03:00
{
2019-07-28 06:25:24 +03:00
struct test_env * env = state - > input ;
switch ( key ) {
2019-07-28 06:25:25 +03:00
case ARG_TEST_NUM : {
selftests/bpf: add sub-tests support for test_progs
Allow tests to have their own set of sub-tests. Also add ability to do
test/subtest selection using `-t <test-name>/<subtest-name>` and `-n
<test-nums-set>/<subtest-nums-set>`, as an extension of existing -t/-n
selector options. For the <test-num-set> format: it's a comma-separated
list of either individual test numbers (1-based), or range of test
numbers. E.g., all of the following are valid sets of test numbers:
- 10
- 1,2,3
- 1-3
- 5-10,1,3-4
'/<subtest' part is optional, but has the same format. E.g., to select
test #3 and its sub-tests #10 through #15, use: -t 3/10-15.
Similarly, to select tests by name, use `-t verif/strobe`:
$ sudo ./test_progs -t verif/strobe
#3/12 strobemeta.o:OK
#3/13 strobemeta_nounroll1.o:OK
#3/14 strobemeta_nounroll2.o:OK
#3 bpf_verif_scale:OK
Summary: 1/3 PASSED, 0 FAILED
Example of using subtest API is in the next patch, converting
bpf_verif_scale.c tests to use sub-tests.
Signed-off-by: Andrii Nakryiko <andriin@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
2019-07-28 06:25:29 +03:00
char * subtest_str = strchr ( arg , ' / ' ) ;
2019-07-28 06:25:25 +03:00
selftests/bpf: add sub-tests support for test_progs
Allow tests to have their own set of sub-tests. Also add ability to do
test/subtest selection using `-t <test-name>/<subtest-name>` and `-n
<test-nums-set>/<subtest-nums-set>`, as an extension of existing -t/-n
selector options. For the <test-num-set> format: it's a comma-separated
list of either individual test numbers (1-based), or range of test
numbers. E.g., all of the following are valid sets of test numbers:
- 10
- 1,2,3
- 1-3
- 5-10,1,3-4
'/<subtest' part is optional, but has the same format. E.g., to select
test #3 and its sub-tests #10 through #15, use: -t 3/10-15.
Similarly, to select tests by name, use `-t verif/strobe`:
$ sudo ./test_progs -t verif/strobe
#3/12 strobemeta.o:OK
#3/13 strobemeta_nounroll1.o:OK
#3/14 strobemeta_nounroll2.o:OK
#3 bpf_verif_scale:OK
Summary: 1/3 PASSED, 0 FAILED
Example of using subtest API is in the next patch, converting
bpf_verif_scale.c tests to use sub-tests.
Signed-off-by: Andrii Nakryiko <andriin@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
2019-07-28 06:25:29 +03:00
if ( subtest_str ) {
* subtest_str = ' \0 ' ;
if ( parse_num_list ( subtest_str + 1 ,
2020-05-12 22:24:42 +03:00
& env - > subtest_selector . num_set ,
& env - > subtest_selector . num_set_len ) ) {
selftests/bpf: add sub-tests support for test_progs
Allow tests to have their own set of sub-tests. Also add ability to do
test/subtest selection using `-t <test-name>/<subtest-name>` and `-n
<test-nums-set>/<subtest-nums-set>`, as an extension of existing -t/-n
selector options. For the <test-num-set> format: it's a comma-separated
list of either individual test numbers (1-based), or range of test
numbers. E.g., all of the following are valid sets of test numbers:
- 10
- 1,2,3
- 1-3
- 5-10,1,3-4
'/<subtest' part is optional, but has the same format. E.g., to select
test #3 and its sub-tests #10 through #15, use: -t 3/10-15.
Similarly, to select tests by name, use `-t verif/strobe`:
$ sudo ./test_progs -t verif/strobe
#3/12 strobemeta.o:OK
#3/13 strobemeta_nounroll1.o:OK
#3/14 strobemeta_nounroll2.o:OK
#3 bpf_verif_scale:OK
Summary: 1/3 PASSED, 0 FAILED
Example of using subtest API is in the next patch, converting
bpf_verif_scale.c tests to use sub-tests.
Signed-off-by: Andrii Nakryiko <andriin@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
2019-07-28 06:25:29 +03:00
fprintf ( stderr ,
" Failed to parse subtest numbers. \n " ) ;
return - EINVAL ;
}
}
2020-05-12 22:24:42 +03:00
if ( parse_num_list ( arg , & env - > test_selector . num_set ,
& env - > test_selector . num_set_len ) ) {
selftests/bpf: add sub-tests support for test_progs
Allow tests to have their own set of sub-tests. Also add ability to do
test/subtest selection using `-t <test-name>/<subtest-name>` and `-n
<test-nums-set>/<subtest-nums-set>`, as an extension of existing -t/-n
selector options. For the <test-num-set> format: it's a comma-separated
list of either individual test numbers (1-based), or range of test
numbers. E.g., all of the following are valid sets of test numbers:
- 10
- 1,2,3
- 1-3
- 5-10,1,3-4
'/<subtest' part is optional, but has the same format. E.g., to select
test #3 and its sub-tests #10 through #15, use: -t 3/10-15.
Similarly, to select tests by name, use `-t verif/strobe`:
$ sudo ./test_progs -t verif/strobe
#3/12 strobemeta.o:OK
#3/13 strobemeta_nounroll1.o:OK
#3/14 strobemeta_nounroll2.o:OK
#3 bpf_verif_scale:OK
Summary: 1/3 PASSED, 0 FAILED
Example of using subtest API is in the next patch, converting
bpf_verif_scale.c tests to use sub-tests.
Signed-off-by: Andrii Nakryiko <andriin@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
2019-07-28 06:25:29 +03:00
fprintf ( stderr , " Failed to parse test numbers. \n " ) ;
return - EINVAL ;
}
2019-07-28 06:25:25 +03:00
break ;
}
2021-08-17 07:47:32 +03:00
case ARG_TEST_NAME_GLOB_ALLOWLIST :
selftests/bpf: add sub-tests support for test_progs
Allow tests to have their own set of sub-tests. Also add ability to do
test/subtest selection using `-t <test-name>/<subtest-name>` and `-n
<test-nums-set>/<subtest-nums-set>`, as an extension of existing -t/-n
selector options. For the <test-num-set> format: it's a comma-separated
list of either individual test numbers (1-based), or range of test
numbers. E.g., all of the following are valid sets of test numbers:
- 10
- 1,2,3
- 1-3
- 5-10,1,3-4
'/<subtest' part is optional, but has the same format. E.g., to select
test #3 and its sub-tests #10 through #15, use: -t 3/10-15.
Similarly, to select tests by name, use `-t verif/strobe`:
$ sudo ./test_progs -t verif/strobe
#3/12 strobemeta.o:OK
#3/13 strobemeta_nounroll1.o:OK
#3/14 strobemeta_nounroll2.o:OK
#3 bpf_verif_scale:OK
Summary: 1/3 PASSED, 0 FAILED
Example of using subtest API is in the next patch, converting
bpf_verif_scale.c tests to use sub-tests.
Signed-off-by: Andrii Nakryiko <andriin@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
2019-07-28 06:25:29 +03:00
case ARG_TEST_NAME : {
2022-04-09 03:17:49 +03:00
if ( parse_test_list ( arg ,
& env - > test_selector . whitelist ,
key = = ARG_TEST_NAME_GLOB_ALLOWLIST ) )
selftests/bpf: Add whitelist/blacklist of test names to test_progs
Add ability to specify a list of test name substrings for selecting which
tests to run. So now -t is accepting a comma-separated list of strings,
similarly to how -n accepts a comma-separated list of test numbers.
Additionally, add ability to blacklist tests by name. Blacklist takes
precedence over whitelist. Blacklisting is important for cases where it's
known that some tests can't pass (e.g., due to perf hardware events that are
not available within VM). This is going to be used for libbpf testing in
Travis CI in its Github repo.
Example runs with just whitelist and whitelist + blacklist:
$ sudo ./test_progs -tattach,core/existence
#1 attach_probe:OK
#6 cgroup_attach_autodetach:OK
#7 cgroup_attach_multi:OK
#8 cgroup_attach_override:OK
#9 core_extern:OK
#10/44 existence:OK
#10/45 existence___minimal:OK
#10/46 existence__err_int_sz:OK
#10/47 existence__err_int_type:OK
#10/48 existence__err_int_kind:OK
#10/49 existence__err_arr_kind:OK
#10/50 existence__err_arr_value_type:OK
#10/51 existence__err_struct_type:OK
#10 core_reloc:OK
#19 flow_dissector_reattach:OK
#60 tp_attach_query:OK
Summary: 8/8 PASSED, 0 SKIPPED, 0 FAILED
$ sudo ./test_progs -tattach,core/existence -bcgroup,flow/arr
#1 attach_probe:OK
#9 core_extern:OK
#10/44 existence:OK
#10/45 existence___minimal:OK
#10/46 existence__err_int_sz:OK
#10/47 existence__err_int_type:OK
#10/48 existence__err_int_kind:OK
#10/51 existence__err_struct_type:OK
#10 core_reloc:OK
#60 tp_attach_query:OK
Summary: 4/6 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Andrii Nakryiko <andriin@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Cc: Julia Kartseva <hex@fb.com>
Link: https://lore.kernel.org/bpf/20200116005549.3644118-1-andriin@fb.com
2020-01-16 03:55:49 +03:00
return - ENOMEM ;
break ;
}
2021-08-17 07:47:32 +03:00
case ARG_TEST_NAME_GLOB_DENYLIST :
selftests/bpf: Add whitelist/blacklist of test names to test_progs
Add ability to specify a list of test name substrings for selecting which
tests to run. So now -t is accepting a comma-separated list of strings,
similarly to how -n accepts a comma-separated list of test numbers.
Additionally, add ability to blacklist tests by name. Blacklist takes
precedence over whitelist. Blacklisting is important for cases where it's
known that some tests can't pass (e.g., due to perf hardware events that are
not available within VM). This is going to be used for libbpf testing in
Travis CI in its Github repo.
Example runs with just whitelist and whitelist + blacklist:
$ sudo ./test_progs -tattach,core/existence
#1 attach_probe:OK
#6 cgroup_attach_autodetach:OK
#7 cgroup_attach_multi:OK
#8 cgroup_attach_override:OK
#9 core_extern:OK
#10/44 existence:OK
#10/45 existence___minimal:OK
#10/46 existence__err_int_sz:OK
#10/47 existence__err_int_type:OK
#10/48 existence__err_int_kind:OK
#10/49 existence__err_arr_kind:OK
#10/50 existence__err_arr_value_type:OK
#10/51 existence__err_struct_type:OK
#10 core_reloc:OK
#19 flow_dissector_reattach:OK
#60 tp_attach_query:OK
Summary: 8/8 PASSED, 0 SKIPPED, 0 FAILED
$ sudo ./test_progs -tattach,core/existence -bcgroup,flow/arr
#1 attach_probe:OK
#9 core_extern:OK
#10/44 existence:OK
#10/45 existence___minimal:OK
#10/46 existence__err_int_sz:OK
#10/47 existence__err_int_type:OK
#10/48 existence__err_int_kind:OK
#10/51 existence__err_struct_type:OK
#10 core_reloc:OK
#60 tp_attach_query:OK
Summary: 4/6 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Andrii Nakryiko <andriin@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Cc: Julia Kartseva <hex@fb.com>
Link: https://lore.kernel.org/bpf/20200116005549.3644118-1-andriin@fb.com
2020-01-16 03:55:49 +03:00
case ARG_TEST_NAME_BLACKLIST : {
2022-04-09 03:17:49 +03:00
if ( parse_test_list ( arg ,
& env - > test_selector . blacklist ,
key = = ARG_TEST_NAME_GLOB_DENYLIST ) )
selftests/bpf: add sub-tests support for test_progs
Allow tests to have their own set of sub-tests. Also add ability to do
test/subtest selection using `-t <test-name>/<subtest-name>` and `-n
<test-nums-set>/<subtest-nums-set>`, as an extension of existing -t/-n
selector options. For the <test-num-set> format: it's a comma-separated
list of either individual test numbers (1-based), or range of test
numbers. E.g., all of the following are valid sets of test numbers:
- 10
- 1,2,3
- 1-3
- 5-10,1,3-4
'/<subtest' part is optional, but has the same format. E.g., to select
test #3 and its sub-tests #10 through #15, use: -t 3/10-15.
Similarly, to select tests by name, use `-t verif/strobe`:
$ sudo ./test_progs -t verif/strobe
#3/12 strobemeta.o:OK
#3/13 strobemeta_nounroll1.o:OK
#3/14 strobemeta_nounroll2.o:OK
#3 bpf_verif_scale:OK
Summary: 1/3 PASSED, 0 FAILED
Example of using subtest API is in the next patch, converting
bpf_verif_scale.c tests to use sub-tests.
Signed-off-by: Andrii Nakryiko <andriin@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
2019-07-28 06:25:29 +03:00
return - ENOMEM ;
2019-07-28 06:25:25 +03:00
break ;
selftests/bpf: add sub-tests support for test_progs
Allow tests to have their own set of sub-tests. Also add ability to do
test/subtest selection using `-t <test-name>/<subtest-name>` and `-n
<test-nums-set>/<subtest-nums-set>`, as an extension of existing -t/-n
selector options. For the <test-num-set> format: it's a comma-separated
list of either individual test numbers (1-based), or range of test
numbers. E.g., all of the following are valid sets of test numbers:
- 10
- 1,2,3
- 1-3
- 5-10,1,3-4
'/<subtest' part is optional, but has the same format. E.g., to select
test #3 and its sub-tests #10 through #15, use: -t 3/10-15.
Similarly, to select tests by name, use `-t verif/strobe`:
$ sudo ./test_progs -t verif/strobe
#3/12 strobemeta.o:OK
#3/13 strobemeta_nounroll1.o:OK
#3/14 strobemeta_nounroll2.o:OK
#3 bpf_verif_scale:OK
Summary: 1/3 PASSED, 0 FAILED
Example of using subtest API is in the next patch, converting
bpf_verif_scale.c tests to use sub-tests.
Signed-off-by: Andrii Nakryiko <andriin@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
2019-07-28 06:25:29 +03:00
}
2019-07-28 06:25:24 +03:00
case ARG_VERIFIER_STATS :
env - > verifier_stats = true ;
break ;
2019-07-28 06:25:27 +03:00
case ARG_VERBOSE :
2019-11-20 03:35:48 +03:00
env - > verbosity = VERBOSE_NORMAL ;
2019-07-28 06:25:27 +03:00
if ( arg ) {
if ( strcmp ( arg , " v " ) = = 0 ) {
2019-11-20 03:35:48 +03:00
env - > verbosity = VERBOSE_VERY ;
extra_prog_load_log_flags = 1 ;
} else if ( strcmp ( arg , " vv " ) = = 0 ) {
env - > verbosity = VERBOSE_SUPER ;
extra_prog_load_log_flags = 2 ;
2019-07-28 06:25:27 +03:00
} else {
fprintf ( stderr ,
" Unrecognized verbosity setting ('%s'), only -v and -vv are supported \n " ,
arg ) ;
return - EINVAL ;
}
}
2020-12-11 04:07:11 +03:00
2022-04-27 07:13:53 +03:00
if ( verbose ( ) ) {
2020-12-11 04:07:11 +03:00
if ( setenv ( " SELFTESTS_VERBOSE " , " 1 " , 1 ) = = - 1 ) {
fprintf ( stderr ,
" Unable to setenv SELFTESTS_VERBOSE=1 (errno=%d) " ,
errno ) ;
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
return - EINVAL ;
2020-12-11 04:07:11 +03:00
}
}
2019-07-28 06:25:27 +03:00
break ;
2020-07-02 00:44:12 +03:00
case ARG_GET_TEST_CNT :
env - > get_test_cnt = true ;
break ;
2020-07-02 00:44:17 +03:00
case ARG_LIST_TEST_NAMES :
env - > list_test_names = true ;
break ;
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
case ARG_NUM_WORKERS :
if ( arg ) {
env - > workers = atoi ( arg ) ;
if ( ! env - > workers ) {
fprintf ( stderr , " Invalid number of worker: %s. " , arg ) ;
return - EINVAL ;
}
} else {
env - > workers = get_nprocs ( ) ;
}
break ;
case ARG_DEBUG :
env - > debug = true ;
break ;
2019-07-28 06:25:24 +03:00
case ARGP_KEY_ARG :
argp_usage ( state ) ;
break ;
case ARGP_KEY_END :
break ;
default :
return ARGP_ERR_UNKNOWN ;
}
return 0 ;
}
2019-10-16 09:00:45 +03:00
/*
* Determine if test_progs is running as a " flavored " test runner and switch
* into corresponding sub - directory to load correct BPF objects .
*
* This is done by looking at executable name . If it contains " -flavor "
* suffix , then we are running as a flavored test runner .
*/
int cd_flavor_subdir ( const char * exec_name )
{
/* General form of argv[0] passed here is:
* some / path / to / test_progs [ - flavor ] , where - flavor part is optional .
* First cut out " test_progs[-flavor] " part , then extract " flavor "
* part , if it ' s there .
*/
const char * flavor = strrchr ( exec_name , ' / ' ) ;
if ( ! flavor )
2022-04-03 16:52:45 +03:00
flavor = exec_name ;
else
flavor + + ;
2019-10-16 09:00:45 +03:00
flavor = strrchr ( flavor , ' - ' ) ;
if ( ! flavor )
return 0 ;
flavor + + ;
2022-04-27 07:13:53 +03:00
if ( verbose ( ) )
2020-08-24 14:57:20 +03:00
fprintf ( stdout , " Switching to flavor '%s' subdirectory... \n " , flavor ) ;
2019-10-16 09:00:45 +03:00
return chdir ( flavor ) ;
}
2021-09-10 21:33:52 +03:00
int trigger_module_test_read ( int read_sz )
{
int fd , err ;
2021-10-04 12:48:57 +03:00
fd = open ( BPF_TESTMOD_TEST_FILE , O_RDONLY ) ;
2021-09-10 21:33:52 +03:00
err = - errno ;
if ( ! ASSERT_GE ( fd , 0 , " testmod_file_open " ) )
return err ;
read ( fd , NULL , read_sz ) ;
close ( fd ) ;
return 0 ;
}
int trigger_module_test_write ( int write_sz )
{
int fd , err ;
char * buf = malloc ( write_sz ) ;
if ( ! buf )
return - ENOMEM ;
memset ( buf , ' a ' , write_sz ) ;
buf [ write_sz - 1 ] = ' \0 ' ;
2021-10-04 12:48:57 +03:00
fd = open ( BPF_TESTMOD_TEST_FILE , O_WRONLY ) ;
2021-09-10 21:33:52 +03:00
err = - errno ;
if ( ! ASSERT_GE ( fd , 0 , " testmod_file_open " ) ) {
free ( buf ) ;
return err ;
}
write ( fd , buf , write_sz ) ;
close ( fd ) ;
free ( buf ) ;
return 0 ;
}
2020-02-25 03:08:47 +03:00
# define MAX_BACKTRACE_SZ 128
void crash_handler ( int signum )
{
void * bt [ MAX_BACKTRACE_SZ ] ;
size_t sz ;
sz = backtrace ( bt , ARRAY_SIZE ( bt ) ) ;
2022-04-27 07:13:53 +03:00
if ( env . test ) {
env . test_state - > error_cnt + + ;
dump_test_log ( env . test , env . test_state , true , false ) ;
}
2020-02-25 03:08:47 +03:00
if ( env . stdout )
stdio_restore ( ) ;
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
if ( env . worker_id ! = - 1 )
fprintf ( stderr , " [%d]: " , env . worker_id ) ;
2020-02-25 03:08:47 +03:00
fprintf ( stderr , " Caught signal #%d! \n Stack trace: \n " , signum ) ;
backtrace_symbols_fd ( bt , sz , STDERR_FILENO ) ;
}
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
static void sigint_handler ( int signum )
{
int i ;
for ( i = 0 ; i < env . workers ; i + + )
if ( env . worker_socks [ i ] > 0 )
close ( env . worker_socks [ i ] ) ;
}
static int current_test_idx ;
static pthread_mutex_t current_test_lock ;
static pthread_mutex_t stdout_output_lock ;
static inline const char * str_msg ( const struct msg * msg , char * buf )
{
switch ( msg - > type ) {
case MSG_DO_TEST :
2022-04-27 07:13:53 +03:00
sprintf ( buf , " MSG_DO_TEST %d " , msg - > do_test . num ) ;
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
break ;
case MSG_TEST_DONE :
sprintf ( buf , " MSG_TEST_DONE %d (log: %d) " ,
2022-04-27 07:13:53 +03:00
msg - > test_done . num ,
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
msg - > test_done . have_log ) ;
break ;
2022-04-27 07:13:53 +03:00
case MSG_SUBTEST_DONE :
sprintf ( buf , " MSG_SUBTEST_DONE %d (log: %d) " ,
msg - > subtest_done . num ,
msg - > subtest_done . have_log ) ;
break ;
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
case MSG_TEST_LOG :
sprintf ( buf , " MSG_TEST_LOG (cnt: %ld, last: %d) " ,
strlen ( msg - > test_log . log_buf ) ,
msg - > test_log . is_last ) ;
break ;
case MSG_EXIT :
sprintf ( buf , " MSG_EXIT " ) ;
break ;
default :
sprintf ( buf , " UNKNOWN " ) ;
break ;
}
return buf ;
}
static int send_message ( int sock , const struct msg * msg )
{
char buf [ 256 ] ;
if ( env . debug )
fprintf ( stderr , " Sending msg: %s \n " , str_msg ( msg , buf ) ) ;
return send ( sock , msg , sizeof ( * msg ) , 0 ) ;
}
static int recv_message ( int sock , struct msg * msg )
{
int ret ;
char buf [ 256 ] ;
memset ( msg , 0 , sizeof ( * msg ) ) ;
ret = recv ( sock , msg , sizeof ( * msg ) , 0 ) ;
if ( ret > = 0 ) {
if ( env . debug )
fprintf ( stderr , " Received msg: %s \n " , str_msg ( msg , buf ) ) ;
}
return ret ;
}
static void run_one_test ( int test_num )
{
struct prog_test_def * test = & prog_test_defs [ test_num ] ;
2022-04-19 01:25:07 +03:00
struct test_state * state = & test_states [ test_num ] ;
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
env . test = test ;
2022-04-19 01:25:07 +03:00
env . test_state = state ;
stdio_hijack ( & state - > log_buf , & state - > log_cnt ) ;
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
2021-10-06 21:56:07 +03:00
if ( test - > run_test )
test - > run_test ( ) ;
else if ( test - > run_serial_test )
test - > run_serial_test ( ) ;
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
/* ensure last sub-test is finalized properly */
2022-04-27 07:13:53 +03:00
if ( env . subtest_state )
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
test__end_subtest ( ) ;
2022-04-19 01:25:07 +03:00
state - > tested = true ;
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
2022-04-27 07:13:53 +03:00
if ( verbose ( ) & & env . worker_id = = - 1 )
print_test_name ( test_num + 1 , test - > test_name ,
test_result ( state - > error_cnt , state - > skip_cnt ) ) ;
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
reset_affinity ( ) ;
restore_netns ( ) ;
if ( test - > need_cgroup_cleanup )
cleanup_cgroup_environment ( ) ;
2022-04-19 01:25:07 +03:00
stdio_restore ( ) ;
2022-04-27 07:13:53 +03:00
dump_test_log ( test , state , false , false ) ;
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
}
struct dispatch_data {
int worker_id ;
int sock_fd ;
} ;
2022-04-27 07:13:53 +03:00
static int read_prog_test_msg ( int sock_fd , struct msg * msg , enum msg_type type )
{
if ( recv_message ( sock_fd , msg ) < 0 )
return 1 ;
if ( msg - > type ! = type ) {
printf ( " %s: unexpected message type %d. expected %d \n " , __func__ , msg - > type , type ) ;
return 1 ;
}
return 0 ;
}
static int dispatch_thread_read_log ( int sock_fd , char * * log_buf , size_t * log_cnt )
{
FILE * log_fp = NULL ;
2022-04-29 01:57:44 +03:00
int result = 0 ;
2022-04-27 07:13:53 +03:00
log_fp = open_memstream ( log_buf , log_cnt ) ;
if ( ! log_fp )
return 1 ;
while ( true ) {
struct msg msg ;
2022-04-29 01:57:44 +03:00
if ( read_prog_test_msg ( sock_fd , & msg , MSG_TEST_LOG ) ) {
result = 1 ;
goto out ;
}
2022-04-27 07:13:53 +03:00
fprintf ( log_fp , " %s " , msg . test_log . log_buf ) ;
if ( msg . test_log . is_last )
break ;
}
2022-04-29 01:57:44 +03:00
out :
2022-04-27 07:13:53 +03:00
fclose ( log_fp ) ;
log_fp = NULL ;
2022-04-29 01:57:44 +03:00
return result ;
2022-04-27 07:13:53 +03:00
}
static int dispatch_thread_send_subtests ( int sock_fd , struct test_state * state )
{
struct msg msg ;
struct subtest_state * subtest_state ;
int subtest_num = state - > subtest_num ;
state - > subtest_states = malloc ( subtest_num * sizeof ( * subtest_state ) ) ;
for ( int i = 0 ; i < subtest_num ; i + + ) {
subtest_state = & state - > subtest_states [ i ] ;
memset ( subtest_state , 0 , sizeof ( * subtest_state ) ) ;
if ( read_prog_test_msg ( sock_fd , & msg , MSG_SUBTEST_DONE ) )
return 1 ;
subtest_state - > name = strdup ( msg . subtest_done . name ) ;
subtest_state - > error_cnt = msg . subtest_done . error_cnt ;
subtest_state - > skipped = msg . subtest_done . skipped ;
2022-05-20 09:13:03 +03:00
subtest_state - > filtered = msg . subtest_done . filtered ;
2022-04-27 07:13:53 +03:00
/* collect all logs */
if ( msg . subtest_done . have_log )
if ( dispatch_thread_read_log ( sock_fd ,
& subtest_state - > log_buf ,
& subtest_state - > log_cnt ) )
return 1 ;
}
return 0 ;
}
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
static void * dispatch_thread ( void * ctx )
{
struct dispatch_data * data = ctx ;
int sock_fd ;
sock_fd = data - > sock_fd ;
while ( true ) {
int test_to_run = - 1 ;
struct prog_test_def * test ;
2022-04-19 01:25:07 +03:00
struct test_state * state ;
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
/* grab a test */
{
pthread_mutex_lock ( & current_test_lock ) ;
if ( current_test_idx > = prog_test_cnt ) {
pthread_mutex_unlock ( & current_test_lock ) ;
goto done ;
}
test = & prog_test_defs [ current_test_idx ] ;
test_to_run = current_test_idx ;
current_test_idx + + ;
pthread_mutex_unlock ( & current_test_lock ) ;
}
2021-10-06 21:56:07 +03:00
if ( ! test - > should_run | | test - > run_serial_test )
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
continue ;
/* run test through worker */
{
struct msg msg_do_test ;
2022-04-27 07:13:53 +03:00
memset ( & msg_do_test , 0 , sizeof ( msg_do_test ) ) ;
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
msg_do_test . type = MSG_DO_TEST ;
2022-04-27 07:13:53 +03:00
msg_do_test . do_test . num = test_to_run ;
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
if ( send_message ( sock_fd , & msg_do_test ) < 0 ) {
perror ( " Fail to send command " ) ;
goto done ;
}
env . worker_current_test [ data - > worker_id ] = test_to_run ;
}
/* wait for test done */
2022-04-27 07:13:53 +03:00
do {
struct msg msg ;
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
2022-04-27 07:13:53 +03:00
if ( read_prog_test_msg ( sock_fd , & msg , MSG_TEST_DONE ) )
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
goto error ;
2022-04-27 07:13:53 +03:00
if ( test_to_run ! = msg . test_done . num )
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
goto error ;
2022-04-19 01:25:07 +03:00
state = & test_states [ test_to_run ] ;
state - > tested = true ;
2022-04-27 07:13:53 +03:00
state - > error_cnt = msg . test_done . error_cnt ;
state - > skip_cnt = msg . test_done . skip_cnt ;
state - > sub_succ_cnt = msg . test_done . sub_succ_cnt ;
state - > subtest_num = msg . test_done . subtest_num ;
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
/* collect all logs */
2022-04-27 07:13:53 +03:00
if ( msg . test_done . have_log ) {
if ( dispatch_thread_read_log ( sock_fd ,
& state - > log_buf ,
& state - > log_cnt ) )
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
goto error ;
2022-04-27 07:13:53 +03:00
}
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
2022-04-27 07:13:53 +03:00
/* collect all subtests and subtest logs */
if ( ! state - > subtest_num )
break ;
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
2022-04-27 07:13:53 +03:00
if ( dispatch_thread_send_subtests ( sock_fd , state ) )
goto error ;
} while ( false ) ;
2022-04-19 01:25:07 +03:00
pthread_mutex_lock ( & stdout_output_lock ) ;
2022-04-27 07:13:53 +03:00
dump_test_log ( test , state , false , true ) ;
2022-04-19 01:25:07 +03:00
pthread_mutex_unlock ( & stdout_output_lock ) ;
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
} /* while (true) */
error :
if ( env . debug )
fprintf ( stderr , " [%d]: Protocol/IO error: %s. \n " , data - > worker_id , strerror ( errno ) ) ;
done :
{
struct msg msg_exit ;
msg_exit . type = MSG_EXIT ;
if ( send_message ( sock_fd , & msg_exit ) < 0 ) {
if ( env . debug )
fprintf ( stderr , " [%d]: send_message msg_exit: %s. \n " ,
data - > worker_id , strerror ( errno ) ) ;
}
}
return NULL ;
}
2022-04-19 01:25:07 +03:00
static void calculate_summary_and_print_errors ( struct test_env * env )
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
{
int i ;
2022-04-19 01:25:07 +03:00
int succ_cnt = 0 , fail_cnt = 0 , sub_succ_cnt = 0 , skip_cnt = 0 ;
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
2022-04-19 01:25:07 +03:00
for ( i = 0 ; i < prog_test_cnt ; i + + ) {
struct test_state * state = & test_states [ i ] ;
if ( ! state - > tested )
continue ;
sub_succ_cnt + = state - > sub_succ_cnt ;
skip_cnt + = state - > skip_cnt ;
if ( state - > error_cnt )
fail_cnt + + ;
else
succ_cnt + + ;
}
2022-04-27 07:13:53 +03:00
/*
* We only print error logs summary when there are failed tests and
* verbose mode is not enabled . Otherwise , results may be incosistent .
*
*/
if ( ! verbose ( ) & & fail_cnt ) {
2022-04-19 01:25:07 +03:00
printf ( " \n All error logs: \n " ) ;
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
2022-04-27 07:13:53 +03:00
/* print error logs again */
for ( i = 0 ; i < prog_test_cnt ; i + + ) {
struct prog_test_def * test = & prog_test_defs [ i ] ;
struct test_state * state = & test_states [ i ] ;
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
2022-04-27 07:13:53 +03:00
if ( ! state - > tested | | ! state - > error_cnt )
continue ;
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
2022-04-27 07:13:53 +03:00
dump_test_log ( test , state , true , true ) ;
}
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
}
2022-04-19 01:25:07 +03:00
printf ( " Summary: %d/%d PASSED, %d SKIPPED, %d FAILED \n " ,
succ_cnt , sub_succ_cnt , skip_cnt , fail_cnt ) ;
env - > succ_cnt = succ_cnt ;
env - > sub_succ_cnt = sub_succ_cnt ;
env - > fail_cnt = fail_cnt ;
env - > skip_cnt = skip_cnt ;
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
}
2022-04-19 01:25:07 +03:00
static void server_main ( void )
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
{
pthread_t * dispatcher_threads ;
struct dispatch_data * data ;
struct sigaction sigact_int = {
. sa_handler = sigint_handler ,
. sa_flags = SA_RESETHAND ,
} ;
int i ;
sigaction ( SIGINT , & sigact_int , NULL ) ;
dispatcher_threads = calloc ( sizeof ( pthread_t ) , env . workers ) ;
data = calloc ( sizeof ( struct dispatch_data ) , env . workers ) ;
env . worker_current_test = calloc ( sizeof ( int ) , env . workers ) ;
for ( i = 0 ; i < env . workers ; i + + ) {
int rc ;
data [ i ] . worker_id = i ;
data [ i ] . sock_fd = env . worker_socks [ i ] ;
rc = pthread_create ( & dispatcher_threads [ i ] , NULL , dispatch_thread , & data [ i ] ) ;
if ( rc < 0 ) {
perror ( " Failed to launch dispatcher thread " ) ;
exit ( EXIT_ERR_SETUP_INFRA ) ;
}
}
/* wait for all dispatcher to finish */
for ( i = 0 ; i < env . workers ; i + + ) {
while ( true ) {
int ret = pthread_tryjoin_np ( dispatcher_threads [ i ] , NULL ) ;
if ( ! ret ) {
break ;
} else if ( ret = = EBUSY ) {
if ( env . debug )
fprintf ( stderr , " Still waiting for thread %d (test %d). \n " ,
i , env . worker_current_test [ i ] + 1 ) ;
usleep ( 1000 * 1000 ) ;
continue ;
} else {
fprintf ( stderr , " Unexpected error joining dispatcher thread: %d " , ret ) ;
break ;
}
}
}
free ( dispatcher_threads ) ;
free ( env . worker_current_test ) ;
free ( data ) ;
2021-10-06 21:56:07 +03:00
/* run serial tests */
save_netns ( ) ;
for ( int i = 0 ; i < prog_test_cnt ; i + + ) {
struct prog_test_def * test = & prog_test_defs [ i ] ;
if ( ! test - > should_run | | ! test - > run_serial_test )
continue ;
run_one_test ( i ) ;
}
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
/* generate summary */
fflush ( stderr ) ;
fflush ( stdout ) ;
2022-04-19 01:25:07 +03:00
calculate_summary_and_print_errors ( & env ) ;
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
/* reap all workers */
for ( i = 0 ; i < env . workers ; i + + ) {
int wstatus , pid ;
pid = waitpid ( env . worker_pids [ i ] , & wstatus , 0 ) ;
if ( pid ! = env . worker_pids [ i ] )
perror ( " Unable to reap worker " ) ;
}
}
2022-04-27 07:13:53 +03:00
static void worker_main_send_log ( int sock , char * log_buf , size_t log_cnt )
{
char * src ;
size_t slen ;
src = log_buf ;
slen = log_cnt ;
while ( slen ) {
struct msg msg_log ;
char * dest ;
size_t len ;
memset ( & msg_log , 0 , sizeof ( msg_log ) ) ;
msg_log . type = MSG_TEST_LOG ;
dest = msg_log . test_log . log_buf ;
len = slen > = MAX_LOG_TRUNK_SIZE ? MAX_LOG_TRUNK_SIZE : slen ;
memcpy ( dest , src , len ) ;
src + = len ;
slen - = len ;
if ( ! slen )
msg_log . test_log . is_last = true ;
assert ( send_message ( sock , & msg_log ) > = 0 ) ;
}
}
static void free_subtest_state ( struct subtest_state * state )
{
if ( state - > log_buf ) {
free ( state - > log_buf ) ;
state - > log_buf = NULL ;
state - > log_cnt = 0 ;
}
free ( state - > name ) ;
state - > name = NULL ;
}
static int worker_main_send_subtests ( int sock , struct test_state * state )
{
int i , result = 0 ;
struct msg msg ;
struct subtest_state * subtest_state ;
memset ( & msg , 0 , sizeof ( msg ) ) ;
msg . type = MSG_SUBTEST_DONE ;
for ( i = 0 ; i < state - > subtest_num ; i + + ) {
subtest_state = & state - > subtest_states [ i ] ;
msg . subtest_done . num = i ;
strncpy ( msg . subtest_done . name , subtest_state - > name , MAX_SUBTEST_NAME ) ;
msg . subtest_done . error_cnt = subtest_state - > error_cnt ;
msg . subtest_done . skipped = subtest_state - > skipped ;
2022-05-20 09:13:03 +03:00
msg . subtest_done . filtered = subtest_state - > filtered ;
2022-04-27 07:13:53 +03:00
msg . subtest_done . have_log = false ;
if ( verbose ( ) | | state - > force_log | | subtest_state - > error_cnt ) {
if ( subtest_state - > log_cnt )
msg . subtest_done . have_log = true ;
}
if ( send_message ( sock , & msg ) < 0 ) {
perror ( " Fail to send message done " ) ;
result = 1 ;
goto out ;
}
/* send logs */
if ( msg . subtest_done . have_log )
worker_main_send_log ( sock , subtest_state - > log_buf , subtest_state - > log_cnt ) ;
free_subtest_state ( subtest_state ) ;
free ( subtest_state - > name ) ;
}
out :
for ( ; i < state - > subtest_num ; i + + )
free_subtest_state ( & state - > subtest_states [ i ] ) ;
free ( state - > subtest_states ) ;
return result ;
}
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
static int worker_main ( int sock )
{
save_netns ( ) ;
while ( true ) {
/* receive command */
struct msg msg ;
if ( recv_message ( sock , & msg ) < 0 )
goto out ;
switch ( msg . type ) {
case MSG_EXIT :
if ( env . debug )
fprintf ( stderr , " [%d]: worker exit. \n " ,
env . worker_id ) ;
goto out ;
case MSG_DO_TEST : {
2022-04-27 07:13:53 +03:00
int test_to_run = msg . do_test . num ;
2022-04-19 01:25:07 +03:00
struct prog_test_def * test = & prog_test_defs [ test_to_run ] ;
struct test_state * state = & test_states [ test_to_run ] ;
2022-04-27 07:13:53 +03:00
struct msg msg ;
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
if ( env . debug )
fprintf ( stderr , " [%d]: #%d:%s running. \n " ,
env . worker_id ,
test_to_run + 1 ,
test - > test_name ) ;
run_one_test ( test_to_run ) ;
2022-04-27 07:13:53 +03:00
memset ( & msg , 0 , sizeof ( msg ) ) ;
msg . type = MSG_TEST_DONE ;
msg . test_done . num = test_to_run ;
msg . test_done . error_cnt = state - > error_cnt ;
msg . test_done . skip_cnt = state - > skip_cnt ;
msg . test_done . sub_succ_cnt = state - > sub_succ_cnt ;
msg . test_done . subtest_num = state - > subtest_num ;
msg . test_done . have_log = false ;
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
2022-04-27 07:13:53 +03:00
if ( verbose ( ) | | state - > force_log | | state - > error_cnt ) {
2022-04-19 01:25:07 +03:00
if ( state - > log_cnt )
2022-04-27 07:13:53 +03:00
msg . test_done . have_log = true ;
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
}
2022-04-27 07:13:53 +03:00
if ( send_message ( sock , & msg ) < 0 ) {
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
perror ( " Fail to send message done " ) ;
goto out ;
}
/* send logs */
2022-04-27 07:13:53 +03:00
if ( msg . test_done . have_log )
worker_main_send_log ( sock , state - > log_buf , state - > log_cnt ) ;
2022-04-19 01:25:07 +03:00
if ( state - > log_buf ) {
free ( state - > log_buf ) ;
state - > log_buf = NULL ;
state - > log_cnt = 0 ;
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
}
2022-04-27 07:13:53 +03:00
if ( state - > subtest_num )
if ( worker_main_send_subtests ( sock , state ) )
goto out ;
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
if ( env . debug )
fprintf ( stderr , " [%d]: #%d:%s done. \n " ,
env . worker_id ,
test_to_run + 1 ,
test - > test_name ) ;
break ;
} /* case MSG_DO_TEST */
default :
if ( env . debug )
fprintf ( stderr , " [%d]: unknown message. \n " , env . worker_id ) ;
return - 1 ;
}
}
out :
return 0 ;
}
2022-04-27 07:13:53 +03:00
static void free_test_states ( void )
{
int i , j ;
for ( i = 0 ; i < ARRAY_SIZE ( prog_test_defs ) ; i + + ) {
struct test_state * test_state = & test_states [ i ] ;
for ( j = 0 ; j < test_state - > subtest_num ; j + + )
free_subtest_state ( & test_state - > subtest_states [ j ] ) ;
free ( test_state - > subtest_states ) ;
free ( test_state - > log_buf ) ;
test_state - > subtest_states = NULL ;
test_state - > log_buf = NULL ;
}
}
2019-07-28 06:25:24 +03:00
int main ( int argc , char * * argv )
{
static const struct argp argp = {
. options = opts ,
. parser = parse_arg ,
. doc = argp_program_doc ,
} ;
2020-02-25 03:08:47 +03:00
struct sigaction sigact = {
. sa_handler = crash_handler ,
. sa_flags = SA_RESETHAND ,
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
} ;
2019-07-28 06:25:24 +03:00
int err , i ;
2020-02-25 03:08:47 +03:00
sigaction ( SIGSEGV , & sigact , NULL ) ;
2019-07-28 06:25:24 +03:00
err = argp_parse ( & argp , argc , argv , 0 , NULL , & env ) ;
if ( err )
return err ;
2019-10-16 09:00:45 +03:00
err = cd_flavor_subdir ( argv [ 0 ] ) ;
if ( err )
return err ;
2021-05-25 06:59:32 +03:00
/* Use libbpf 1.0 API mode */
libbpf_set_strict_mode ( LIBBPF_STRICT_ALL ) ;
2019-07-28 06:25:27 +03:00
libbpf_set_print ( libbpf_print_fn ) ;
2018-10-18 16:16:41 +03:00
srand ( time ( NULL ) ) ;
2019-07-28 06:25:28 +03:00
env . jit_enabled = is_jit_enabled ( ) ;
2020-03-14 04:39:32 +03:00
env . nr_cpus = libbpf_num_possible_cpus ( ) ;
if ( env . nr_cpus < 0 ) {
fprintf ( stderr , " Failed to get number of CPUs: %d! \n " ,
env . nr_cpus ) ;
return - 1 ;
}
2018-04-29 08:28:15 +03:00
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
env . stdout = stdout ;
env . stderr = stderr ;
2020-12-03 23:46:26 +03:00
env . has_testmod = true ;
2021-08-17 07:47:29 +03:00
if ( ! env . list_test_names & & load_bpf_testmod ( ) ) {
2020-12-03 23:46:26 +03:00
fprintf ( env . stderr , " WARNING! Selftests relying on bpf_testmod.ko will be skipped. \n " ) ;
env . has_testmod = false ;
}
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
/* initializing tests */
2019-07-28 06:25:28 +03:00
for ( i = 0 ; i < prog_test_cnt ; i + + ) {
struct prog_test_def * test = & prog_test_defs [ i ] ;
2019-07-28 06:25:25 +03:00
test - > test_num = i + 1 ;
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
if ( should_run ( & env . test_selector ,
selftests/bpf: add sub-tests support for test_progs
Allow tests to have their own set of sub-tests. Also add ability to do
test/subtest selection using `-t <test-name>/<subtest-name>` and `-n
<test-nums-set>/<subtest-nums-set>`, as an extension of existing -t/-n
selector options. For the <test-num-set> format: it's a comma-separated
list of either individual test numbers (1-based), or range of test
numbers. E.g., all of the following are valid sets of test numbers:
- 10
- 1,2,3
- 1-3
- 5-10,1,3-4
'/<subtest' part is optional, but has the same format. E.g., to select
test #3 and its sub-tests #10 through #15, use: -t 3/10-15.
Similarly, to select tests by name, use `-t verif/strobe`:
$ sudo ./test_progs -t verif/strobe
#3/12 strobemeta.o:OK
#3/13 strobemeta_nounroll1.o:OK
#3/14 strobemeta_nounroll2.o:OK
#3 bpf_verif_scale:OK
Summary: 1/3 PASSED, 0 FAILED
Example of using subtest API is in the next patch, converting
bpf_verif_scale.c tests to use sub-tests.
Signed-off-by: Andrii Nakryiko <andriin@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
2019-07-28 06:25:29 +03:00
test - > test_num , test - > test_name ) )
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
test - > should_run = true ;
else
test - > should_run = false ;
2021-10-06 21:56:07 +03:00
if ( ( test - > run_test = = NULL & & test - > run_serial_test = = NULL ) | |
( test - > run_test ! = NULL & & test - > run_serial_test ! = NULL ) ) {
fprintf ( stderr , " Test %d:%s must have either test_%s() or serial_test_%sl() defined. \n " ,
test - > test_num , test - > test_name , test - > test_name , test - > test_name ) ;
exit ( EXIT_ERR_SETUP_INFRA ) ;
}
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
}
/* ignore workers if we are just listing */
if ( env . get_test_cnt | | env . list_test_names )
env . workers = 0 ;
/* launch workers if requested */
env . worker_id = - 1 ; /* main process */
if ( env . workers ) {
env . worker_pids = calloc ( sizeof ( __pid_t ) , env . workers ) ;
env . worker_socks = calloc ( sizeof ( int ) , env . workers ) ;
if ( env . debug )
fprintf ( stdout , " Launching %d workers. \n " , env . workers ) ;
for ( i = 0 ; i < env . workers ; i + + ) {
int sv [ 2 ] ;
pid_t pid ;
if ( socketpair ( AF_UNIX , SOCK_SEQPACKET | SOCK_CLOEXEC , 0 , sv ) < 0 ) {
perror ( " Fail to create worker socket " ) ;
return - 1 ;
}
pid = fork ( ) ;
if ( pid < 0 ) {
perror ( " Failed to fork worker " ) ;
return - 1 ;
} else if ( pid ! = 0 ) { /* main process */
close ( sv [ 1 ] ) ;
env . worker_pids [ i ] = pid ;
env . worker_socks [ i ] = sv [ 0 ] ;
} else { /* inside each worker process */
close ( sv [ 0 ] ) ;
env . worker_id = i ;
return worker_main ( sv [ 1 ] ) ;
}
}
if ( env . worker_id = = - 1 ) {
server_main ( ) ;
goto out ;
}
}
/* The rest of the main process */
/* on single mode */
save_netns ( ) ;
for ( i = 0 ; i < prog_test_cnt ; i + + ) {
struct prog_test_def * test = & prog_test_defs [ i ] ;
if ( ! test - > should_run )
2019-07-28 06:25:25 +03:00
continue ;
2020-07-02 00:44:12 +03:00
if ( env . get_test_cnt ) {
env . succ_cnt + + ;
continue ;
}
2020-07-02 00:44:17 +03:00
if ( env . list_test_names ) {
fprintf ( env . stdout , " %s \n " , test - > test_name ) ;
env . succ_cnt + + ;
continue ;
}
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
run_one_test ( i ) ;
2019-07-28 06:25:24 +03:00
}
2020-07-02 00:44:12 +03:00
if ( env . get_test_cnt ) {
printf ( " %d \n " , env . succ_cnt ) ;
goto out ;
}
2020-07-02 00:44:17 +03:00
if ( env . list_test_names )
goto out ;
2022-04-19 01:25:07 +03:00
calculate_summary_and_print_errors ( & env ) ;
2019-07-28 06:25:28 +03:00
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
close ( env . saved_netns_fd ) ;
2020-07-02 00:44:12 +03:00
out :
selftests/bpf: Add parallelism to test_progs
This patch adds "-j" mode to test_progs, executing tests in multiple
process. "-j" mode is optional, and works with all existing test
selection mechanism, as well as "-v", "-l" etc.
In "-j" mode, main process use UDS/SEQPACKET to communicate to each forked
worker, commanding it to run tests and collect logs. After all tests are
finished, a summary is printed. main process use multiple competing
threads to dispatch work to worker, trying to keep them all busy.
The test status will be printed as soon as it is finished, if there are
error logs, it will be printed after the final summary line.
By specifying "--debug", additional debug information on server/worker
communication will be printed.
Example output:
> ./test_progs -n 15-20 -j
[ 12.801730] bpf_testmod: loading out-of-tree module taints kernel.
Launching 8 workers.
#20 btf_split:OK
#16 btf_endian:OK
#18 btf_module:OK
#17 btf_map_in_map:OK
#19 btf_skc_cls_ingress:OK
#15 btf_dump:OK
Summary: 6/20 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Yucong Sun <sunyucong@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211006185619.364369-2-fallentree@fb.com
2021-10-06 21:56:06 +03:00
if ( ! env . list_test_names & & env . has_testmod )
unload_bpf_testmod ( ) ;
2022-04-09 03:17:49 +03:00
free_test_selector ( & env . test_selector ) ;
2022-04-29 01:57:44 +03:00
free_test_selector ( & env . subtest_selector ) ;
2022-04-27 07:13:53 +03:00
free_test_states ( ) ;
2017-03-31 07:45:41 +03:00
2020-07-02 00:44:07 +03:00
if ( env . succ_cnt + env . fail_cnt + env . skip_cnt = = 0 )
2020-07-07 10:12:19 +03:00
return EXIT_NO_TEST ;
2020-07-02 00:44:07 +03:00
2019-08-22 02:44:25 +03:00
return env . fail_cnt ? EXIT_FAILURE : EXIT_SUCCESS ;
2017-03-31 07:45:41 +03:00
}