Home | History | Annotate | Download | only in afe

Lines Matching refs:is_server

68 def _get_tests_stanza(tests, is_server, prepend=None, append=None,
73 @param is_server bool, Is this a server side test?
79 final client control file to run after tests. is_server must be False.
85 assert not (client_control_file and is_server)
103 if is_server:
151 def _get_profiler_commands(profilers, is_server, profile_only):
161 def _sanity_check_generate_control(is_server, client_control_file):
170 if is_server and client_control_file:
176 def generate_control(tests, is_server=False, profilers=(),
183 @param is_server bool, Is this a server control file rather than a client?
186 last test after everything in tests. Requires is_server=False.
194 _sanity_check_generate_control(is_server=is_server,
197 prepend, append = _get_profiler_commands(profilers, is_server, profile_only)
198 control_file_text += _get_tests_stanza(tests, is_server, prepend, append,