FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
counterexample/Makefile at main · Aditya2k5here/counterexample · GitHub
Aditya2k5here
/
counterexample
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
counterexample
/
Makefile
Copy path
More file actions
More file actions
Latest commit
History
History
History
30 lines (21 loc) · 754 Bytes
Breadcrumbs
counterexample
/
Makefile
Copy path
File metadata and controls
30 lines (21 loc) · 754 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
PY
?= python3
.PHONY
: help test bench report figures hunt clean all
help
:
@echo
"
make test run the test suite (~45s)
"
@echo
"
make bench run the full experiment -> results/results.json (~30min)
"
@echo
"
make report rebuild results/report.html and results/summary.md
"
@echo
"
make hunt search for a failure in the correct implementation
"
@echo
"
make figures re-render the README figures (needs playwright)
"
test
:
PYTHONPATH=.:tests
$(
PY
)
-m pytest tests -q
bench
:
PYTHONPATH=.
$(
PY
)
-m cx bench
report
:
PYTHONPATH=.
$(
PY
)
-m cx report
hunt
:
PYTHONPATH=.
$(
PY
)
-m cx hunt --budget 500
figures
:
PYTHONPATH=.
$(
PY
)
tools/render_figures.py
all
: bench report
clean
:
rm -rf __pycache__
*
/__pycache__
*
/
*
/__pycache__ .pytest_cache
Back
|
FazBrowse Home
|
New Git URL