Files
val-blog/org/m2/T3_RESULT.md
T

51 lines
981 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# T3 门禁验证结果(应 `PAUSE_AND_ESCALATE`
- 执行目录:`org/m2/`
- 脚本:`../pilot/gate_check.sh`
- 验证目标:在 `escalationFlag=true` 时,无论其他参数如何,均应输出 `PAUSE_AND_ESCALATE` 且返回码为 `3`
## 复验命令
```bash
cd org/m2
../pilot/gate_check.sh 12000 1 20 true
echo $?
../pilot/gate_check.sh 30000 2 40 true
echo $?
../pilot/gate_check.sh 45000 5 99 true
echo $?
```
## 实际执行记录
### Case 1
- 命令:`../pilot/gate_check.sh 12000 1 20 true`
- 返回码:`3`
- 输出:
```text
PAUSE_AND_ESCALATE
```
### Case 2
- 命令:`../pilot/gate_check.sh 30000 2 40 true`
- 返回码:`3`
- 输出:
```text
PAUSE_AND_ESCALATE
```
### Case 3
- 命令:`../pilot/gate_check.sh 45000 5 99 true`
- 返回码:`3`
- 输出:
```text
PAUSE_AND_ESCALATE
```
## 结论
T3 验证通过:在 `escalationFlag=true` 条件下,脚本均返回 `PAUSE_AND_ESCALATE`exit code `3`),符合预期规则。