-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
57 lines (42 loc) · 1.63 KB
/
Makefile
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
all: pylint check
# LINTERS AND STATIC CHECKERS
pylint:
pylint slowbeast/
fixme:
pylint --enable=fixme slowbeast/
# FORMATTING
black:
black slowbeast/
autopep:
autopep8 --in-place --aggressive --aggressive --recursive slowbeast
# TESTING
check:
lit -j4 --path=$(shell pwd) -D OPTS="-se-step=block" tests/
lit -j4 --path=$(shell pwd) -D OPTS="-se -bse" tests/
lit -j4 --path=$(shell pwd) -D OPTS="-se -bself" tests/
lit -j4 --path=$(shell pwd) -D OPTS="-se -cfkind" tests/
check-bse:
lit -j4 --path=$(shell pwd) -v -D OPTS="-bse" tests/
check-bself:
lit -j4 --path=$(shell pwd) -a -D OPTS="-bself" tests/
check-bselff:
lit -j4 --path=$(shell pwd) -D OPTS="-bselff" tests/
check-clam:
lit -j4 --path=$(shell pwd) -v -D OPTS="-bse -external-invariants=clam" tests/
lit -j4 --path=$(shell pwd) -a -D OPTS="-bself -external-invariants=clam" tests/
check-cfkind:
lit -j4 --path=$(shell pwd) -a -D OPTS="-cfkind" tests/
check-all:
lit -j4 --path=$(shell pwd) -D OPTS="-se-step=instr" tests/
lit -j4 --path=$(shell pwd) -D OPTS="-se-step=block" tests/
lit -j4 --path=$(shell pwd) -D OPTS="-se-incremental-solving" tests/
lit -j4 --path=$(shell pwd) -D OPTS="-se -kind" tests/
lit -j4 --path=$(shell pwd) -D OPTS="-se -kind -kind-naive" tests/
lit -j4 --path=$(shell pwd) -D OPTS="-se -bse" tests/
lit -j4 --path=$(shell pwd) -D OPTS="-se -bself" tests/
lit -j4 --path=$(shell pwd) -D OPTS="-se -cfkind" tests/
check-v:
lit -j4 --path=$(shell pwd) -a -D tests/
lit -j4 --path=$(shell pwd) -a -D OPTS="-bself" tests/
lit -j4 --path=$(shell pwd) -a -D OPTS="-cfkind" tests/
.PHONY: all pylint black autopep check check-bself check-all check-v