feat: phase2 review fixes

- TIME injection: change from spaces to '2500' (hour>23) for NUMVAL trigger
- Runner: add .resolve() to work_dir to fix chdir+relative path breakage
- Coverage: per-target field overrides for DP#9-#12 (START-DATE=20240115 etc.)
- .gitignore: add compilation artifacts, temp scripts, test outputs
This commit is contained in:
hangshuo652
2026-07-15 21:46:28 +08:00
parent f3be17e5eb
commit 54d4e81240
13 changed files with 769 additions and 188 deletions
+6 -1
View File
@@ -290,10 +290,15 @@ class GixsqlCobolRunner:
"-K", "GIXSQLExecSelectIntoOne",
"-K", "GIXSQLEndSQL",
"-K", "GIXSQLConnect",
"-K", "GIXSQLCursorDeclare",
"-K", "GIXSQLCursorDeclareParams",
"-K", "GIXSQLCursorFetchOne",
"-K", "GIXSQLCursorOpen",
"-K", "GIXSQLCursorClose",
]
cmd = [
self.cobc_cmd, "-x",
"-L", str(self.lib_path),
"-L", str(self.lib_path.resolve()),
*gixsql_k,
"-l", "gixsql",
]