Lines Matching full:is_server
164 is_server=False, upload_kernel_config=False):
180 if is_server:
216 def get_tests_stanza(tests, is_server, prepend=None, append=None,
221 @param is_server bool, Is this a server side test?
227 final client control file to run after tests. is_server must be False.
231 assert not (client_control_file and is_server)
237 return _get_tests_stanza(raw_control_files, is_server, prepend, append,
241 def _get_tests_stanza(raw_control_files, is_server, prepend, append,
251 @param is_server bool, Is this a server side test?
267 if is_server:
309 def _get_profiler_commands(profilers, is_server, profile_only):
319 def _sanity_check_generate_control(is_server, client_control_file, kernels,
329 if is_server and client_control_file:
350 if upload_kernel_config and not is_server:
356 def generate_control(tests, kernels=None, platform=None, is_server=False,
366 @param is_server bool, Is this a server control file rather than a client?
369 last test after everything in tests. Requires is_server=False.
379 _sanity_check_generate_control(is_server=is_server, kernels=kernels,
386 kernels, platform, is_server=is_server,
391 prepend, append = _get_profiler_commands(profilers, is_server, profile_only)
393 control_file_text += get_tests_stanza(tests, is_server, prepend, append,