Lines Matching refs:options_name
55 def options_abbrev(options_name): argument
58 assert options_name.startswith(prefix)
59 return options_name[len(prefix):].lower()
62 def get_base_build_dir(options_name): argument
66 return 'build_%s' % options_abbrev(options_name)
69 def get_build_dir(options_name): argument
74 return os.path.join(lvgl_test_dir, get_base_build_dir(options_name))
108 def build_tests(options_name, build_type, clean): argument
115 options_name), get_option_description(options_name))
121 build_dir = get_build_dir(options_name)
137 '-D%s=1' % options_name, '..'])
142 def run_tests(options_name, test_suite): argument
147 label = 'Running tests for %s' % options_abbrev(options_name)
152 os.chdir(get_build_dir(options_name))
256 for options_name in options_to_build:
257 is_test = options_name in test_options
259 build_tests(options_name, build_type, args.clean)
262 run_tests(options_name, args.test_suite)