v_abcd commands should be removed to prevent unintentional usage and throw with a suggestion command for dac and power
Build on RHEL9 / build (push) Successful in 3m29s
Run Simulator Tests on local RHEL9 / build (push) Failing after 3m42s
Build on RHEL8 / build (push) Successful in 5m10s
Run Simulator Tests on local RHEL8 / build (push) Failing after 5m19s

This commit is contained in:
2026-02-26 14:59:26 +01:00
parent 42da2e04b7
commit 89fc3eac45
17 changed files with 193 additions and 1122 deletions
@@ -36,7 +36,7 @@ class CodeGenerator:
self.file.write(line)
self.template_file.close()
def write_header(self, in_path, out_path, commands, deprecated_commands):
def write_header(self, in_path, out_path, commands, deprecated_commands, removed_commands):
"""Write the header file for the caller.h file"""
with out_path.open('w') as fp:
with in_path.open('r') as fp2:
@@ -59,6 +59,11 @@ class CodeGenerator:
fp.write(f'{{"{key}", "{value}"}},\n')
continue
if "THIS COMMENT TO BE REPLACED BY THE ACTUAL CODE (4)" in line:
for key, value in removed_commands.items():
fp.write(f'{{"{key}", "{value}"}},\n')
continue
fp.write(line)
def write_infer_header(self, in_path, out_path, commands):