f9fcc7adab
date: 2026-06-28T09:48:35 master commit: da6313dbe95b3f24bb5d8018b0e5f950f5823ca7
14 lines
377 B
Python
Executable File
14 lines
377 B
Python
Executable File
#!/usr/bin/env python3
|
|
# extract asts from process replay artifacts
|
|
import os
|
|
from test.external.process_replay.process_replay import _pmap
|
|
|
|
LOGOPS = os.getenv("LOGOPS", "/tmp/sops")
|
|
|
|
def extract_ast(*args) -> None:
|
|
open(LOGOPS, "a").write(str(args[1]).replace("\n", "").replace(" ", "")+"\n")
|
|
return None
|
|
|
|
if __name__ == "__main__":
|
|
_pmap({"do_to_program":extract_ast})
|