feat: add benchmark-programs — 58 telecom COBOL test programs

作为子目录纳入系统,与核心测试管道协同

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
NB-076
2026-06-25 09:53:21 +08:00
parent 50f9f0f52f
commit 94400d50d4
278 changed files with 44125 additions and 0 deletions
@@ -0,0 +1,16 @@
*> ============================================================
*> TEL-CDR.cpy — 通话明细记录布局 (45 bytes)
*> Call Detail Record Layout
*>
*> Fields (45 bytes total):
*> CDR-ID PIC X(10) — CDR 编号
*> CDR-CALLER PIC X(11) — 主叫号码 (中国手机号 86138xxxxxxx)
*> CDR-CALLEE PIC X(11) — 被叫号码
*> CDR-DURATION PIC 9(09) — 通话时长 (秒)
*> CDR-RESERVED PIC X(04) — 预留
*> ============================================================
05 CDR-ID PIC X(10).
05 CDR-CALLER PIC X(11).
05 CDR-CALLEE PIC X(11).
05 CDR-DURATION PIC 9(09).
05 CDR-RESERVED PIC X(04).