-
Notifications
You must be signed in to change notification settings - Fork 0
[Invoker] Add interactive problems support #21
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
base: main
Are you sure you want to change the base?
Conversation
afa9cc5 to
889d5cf
Compare
| case verdict.TL: | ||
| return fmt.Errorf("checker running took more than %v time", s.test.checkConfig.TimeLimit) | ||
| return fmt.Errorf("%s running took more than %v time", cmd, s.test.checkConfig.TimeLimit) | ||
| case verdict.ML: | ||
| return fmt.Errorf("checker running took more than %v memory", s.test.checkConfig.MemoryLimit) | ||
| return fmt.Errorf("%s running took more than %v memory", cmd, s.test.checkConfig.MemoryLimit) | ||
| case verdict.WL: | ||
| return fmt.Errorf("checker running took more than %v wall time", s.test.checkConfig.WallTimeLimit) | ||
| return fmt.Errorf("%s running took more than %v wall time", cmd, s.test.checkConfig.WallTimeLimit) | ||
| case verdict.SE: | ||
| return fmt.Errorf("checker security violation") | ||
| return fmt.Errorf("%s security violation", cmd) |
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.
такое чувство, будто тут лучше все же добавить какие-нибудь кавычки, чтобы легко разделить команду и остальную ошибку
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.
а, cmd это тип штуки из тестлиба
мб тогда енум
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.
Ну если честно, хз зачем тут enum, тут же строка которая ни для чего кроме логов не используется
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.
мб назвать переменную как-то иначе
у меня cmd ассоциируется с какой-то командой (мб это я дурак)
misha567889
left a comment
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.
по поводу cmd -- это минорно, наверное можно пока так оставить
No description provided.