-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Рефакторинг опций сборки и запуска #111
base: master
Are you sure you want to change the base?
Conversation
class BuildOptions: | ||
def __init__(self, asan=False, verbose=False): | ||
self.asan = asan | ||
self.verbose = verbose | ||
|
||
|
||
class RunOptions: | ||
def __init__(self, asan=False, valgrind=False): | ||
self.asan = asan | ||
self.valgrind = valgrind | ||
|
||
|
||
class TestRunOptions(RunOptions): | ||
def __init__(self, | ||
continue_on_error=False, | ||
ignore_exit_code=False, | ||
asan=False, | ||
valgrind=False, | ||
is_sample=False): | ||
super().__init__(asan=asan, valgrind=valgrind) | ||
self.continue_on_error = continue_on_error | ||
self.ignore_exit_code = ignore_exit_code | ||
self.is_sample = is_sample |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Можешь напомнить зачем это разделение?
Пока-что некрасиво получается с TestSource
, в который почему-то передаются опции запуска
Хотя он еще и собирает скрипты
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- все эти опции, кроме asan, не нужны в команде
build
(и во всех вызовахcompile_solution
) - при запуске решения из команды
run
нужны только опцииasan
иvalgrind
В TestSource
сейчас нужен только ignore_exit_code
для эталонного решения (возможно, стоит явно передавать его вместо всего объекта TestRunOptions
). Опции / таргеты не влияют на сборку скрипта (раньше использовалась только опция для asan)
No description provided.