Skip to content

Commit

Permalink
Rebuild compiler in
Browse files Browse the repository at this point in the history
  • Loading branch information
mustafaquraish committed Nov 3, 2024
1 parent eaabacc commit d82e798
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion meta/make_lsp_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@

_, inp_file, args, out_file = argv

expected = sp.check_output(f"ocen lsp {args} {inp_file}", text=True, shell=True)
# Rebuild compiler...
sp.run("ocen compiler/main.oc -o ./build/ocen", shell=True, check=True)
expected = sp.check_output(f"./build/ocen lsp {args} {inp_file}", text=True, shell=True)
try:
expected = json.loads(expected)
except json.JSONDecodeError:
Expand Down

0 comments on commit d82e798

Please sign in to comment.