Lines Matching +full:max +full:- +full:parallel
1 // -*- Mode: C++ -*-
12 #include "test-read-common.h"
75 = create_write_context(corp->get_environment(), of); in serialize_corpus()
83 /// Spawn `abidw --abidiff` tool appending @p extargs argument.
102 drop_private_types += "--headers-dir " + in_public_headers_path + in run_abidw()
103 " --drop-private-types"; in run_abidw()
105 " --abidiff " + extargs + in_elf_path; in run_abidw()
133 string cmd = "diff -u " + in_abi_path + " " + out_abi_path; in run_diff()
160 << " --help|-h display this message\n" in display_usage()
161 << " --no-parallel execute testsuite is a sigle thread\n" in display_usage()
180 if (!strcmp(argv[i], "--no-parallel")) in parse_command_line()
181 opts.parallel = false; in parse_command_line()
182 else if (!strcmp(argv[i], "--help") in parse_command_line()
183 || !strcmp(argv[i], "--h")) in parse_command_line()
187 if (strlen(argv[i]) >= 2 && argv[i][0] == '-' && argv[i][1] == '-') in parse_command_line()
214 size_t num_workers = (opts.parallel in run_tests()
219 // Create a task queue. The max number of worker threads of the in run_tests()
222 // --no-parallel was provided then the number of worker threads in run_tests()
231 for (const InOutSpec *s = specs; s->in_elf_path; ++s) in run_tests()
256 if (!t->is_ok) in run_tests()
259 if (!t->error_message.empty()) in run_tests()
260 cerr << t->error_message << '\n'; in run_tests()