diff options
author | Sidney Congard | 2022-06-13 17:10:43 +0200 |
---|---|---|
committer | Sidney Congard | 2022-06-13 17:10:43 +0200 |
commit | 414769e0c9a1d370d3ab906b710e2e8adfe25e5e (patch) | |
tree | 556f550458bb7039f5572e82f55389f66084d83c /Makefile | |
parent | ba61ed50e7b2fdc78690de92d734a3747029f903 (diff) |
crude generation working - missing unit tests & special constants handling
Diffstat (limited to '')
-rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -31,8 +31,8 @@ build: .PHONY: test test: build trans-no_nested_borrows trans-paper \ trans-hashmap trans-hashmap_main \ - trans-external trans-nll-betree_nll \ - trans-nll-betree_main + trans-external trans-constants \ + trans-nll-betree_nll trans-nll-betree_main \ # Add specific options to some tests trans-no_nested_borrows trans-paper: \ @@ -48,6 +48,9 @@ trans-hashmap_main: SUBDIR:=hashmap_on_disk trans-nll-betree_nll: TRANS_OPTIONS += -test-units -no-split-files -no-state -no-decreases-clauses trans-nll-betree_nll: SUBDIR:=misc +trans-constants: TRANS_OPTIONS += -no-split-files -no-state -no-decreases-clauses +trans-constants: SUBDIR:=misc + trans-external: TRANS_OPTIONS += trans-external: SUBDIR:=misc |