Skip to content

Commit

Permalink
rebase to main, solving conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
christophkloeffel committed Nov 8, 2024
1 parent 23eb0f6 commit 72b9582
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
12 changes: 6 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -128,10 +128,10 @@ requirements.lobster: lobster/tools/trlc/requirements.trlc \
code.lobster: $(wildcard lobster/tools/trlc/*.py)
lobster-python --out code.lobster lobster/tools/trlc

unit-tests.lobster: $(wildcard test-unit/lobster-trlc/*.py)
lobster-python --activity --out unit-tests.lobster test-unit/lobster-trlc
unit-tests.lobster: $(wildcard tests-unit/lobster-trlc/*.py)
lobster-python --activity --out unit-tests.lobster tests-unit/lobster-trlc

system-tests.lobster: $(wildcard test-system/*/*.rsl) \
$(wildcard test-system/*/*.trlc) \
$(wildcard test-system/*/tracing)
python3 test-system/lobster-trlc/lobster-trlc-system-test.py
system-tests.lobster: $(wildcard tests-system/*/*.rsl) \
$(wildcard tests-system/*/*.trlc) \
$(wildcard tests-system/*/tracing)
python3 tests-system/lobster-trlc/lobster-trlc-system-test.py
1 change: 1 addition & 0 deletions lobster/report.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ def write_report(self, filename):

with open(filename, "w", encoding="UTF-8") as fd:
json.dump(report, fd, indent=2)
fd.write("\n")

def load_report(self, filename):
assert isinstance(filename, str)
Expand Down
2 changes: 1 addition & 1 deletion tests-integration/projects/filter/report.reference_output
Original file line number Diff line number Diff line change
Expand Up @@ -435,4 +435,4 @@
}
},
"matrix": []
}
}

0 comments on commit 72b9582

Please sign in to comment.