split comma benchmark, dsp on c4 [PR] (#16598)

This commit is contained in:
Christopher Milan 2026-06-12 20:26:05 -07:00 committed by GitHub
commit bcdb988df0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 57 additions and 6 deletions

View file

@ -255,7 +255,7 @@ def _sign(serial_num, out_dir):
final = _build_elf(ehdr, allph, segs)
os.makedirs(out_dir, exist_ok=True)
out = os.path.join(out_dir, "testsig-0x%08X.so" % serial_num)
out = os.path.join(out_dir, "testsig-0x%08x.so" % serial_num)
with open(out, 'wb') as f:
f.write(final)
print("Signing complete! Output saved at %s" % out)