blob: 35032b9483166c5fb1e2e58c0101964f1038a956 [file] [log] [blame]
// Copyright 2021 The LUCI Authors. All rights reserved.
// Use of this source code is governed under the Apache License, Version 2.0
// that can be found in the LICENSE file.
syntax = "proto3";
package recipes.recipe_engine.engine_tests.long_sleep;
message InputProperties {
// If true, recipe will attempt to recover from early termination and exit
// with a SUCCESS status.
bool recover = 1;
// Message for checking the retcode of the canceled sleep step. If not set,
// the retcode won't be checked. If set and retcode is not set, then the
// retcode of the canceled step will be checked to be equal to None.
// Otherwise, the retcode of the canceled step will be checked to be equal
// to the provided retcode.
message CheckRetcode {
optional int32 retcode = 1;
}
CheckRetcode check_retcode = 2;
}