chore(org): rename Architect codename from Aurelius to Helix

This commit is contained in:
Chen Gu
2026-08-13 17:00:21 +08:00
parent 19ad03d390
commit 9f8d8672d7
54 changed files with 2723 additions and 11 deletions
+50
View File
@@ -0,0 +1,50 @@
# 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`),符合预期规则。