Skip to content

Commit 81e36ec

Browse files
committed
Remove tests for solc-to-k from Makefile
1 parent deddf66 commit 81e36ec

File tree

1 file changed

+1
-23
lines changed

1 file changed

+1
-23
lines changed

Makefile

Lines changed: 1 addition & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ test-prove-dss:
108108

109109
.PHONY: test-integration
110110
test-integration:
111-
$(MAKE) -C kevm-pyk/ test-integration PYTEST_ARGS+='-k "(test_kast.py or test_run.py or test_solc_to_k.py)"'
111+
$(MAKE) -C kevm-pyk/ test-integration PYTEST_ARGS+='-k "(test_kast.py or test_run.py)"'
112112

113113
.PHONY: profile
114114
profile:
@@ -131,28 +131,6 @@ KPROVE_EXT = k
131131
KEVM_OPTS ?=
132132
KPROVE_OPTS ?=
133133

134-
135-
tests/specs/examples/%-bin-runtime.k: KEVM_OPTS += --verbose
136-
137-
tests/specs/examples/erc20-spec/haskell/timestamp: tests/specs/examples/erc20-bin-runtime.k
138-
.PHONY: tests/specs/examples/erc20-bin-runtime.k
139-
tests/specs/examples/erc20-bin-runtime.k: tests/specs/examples/ERC20.sol $(KEVM_LIB)/$(haskell_kompiled)
140-
$(KEVM) solc-to-k $< ERC20 $(KEVM_OPTS) --verbose --definition $(KEVM_LIB)/$(haskell_dir) --main-module ERC20-VERIFICATION > $@
141-
142-
tests/specs/examples/erc721-spec/haskell/timestamp: tests/specs/examples/erc721-bin-runtime.k
143-
.PHONY: tests/specs/examples/erc721-bin-runtime.k
144-
tests/specs/examples/erc721-bin-runtime.k: tests/specs/examples/ERC721.sol $(KEVM_LIB)/$(haskell_kompiled)
145-
$(KEVM) solc-to-k $< ERC721 $(KEVM_OPTS) --verbose --definition $(KEVM_LIB)/$(haskell_dir) --main-module ERC721-VERIFICATION > $@
146-
147-
tests/specs/examples/storage-spec/haskell/timestamp: tests/specs/examples/storage-bin-runtime.k
148-
.PHONY: tests/specs/examples/storage-bin-runtime.k
149-
tests/specs/examples/storage-bin-runtime.k: tests/specs/examples/Storage.sol $(KEVM_LIB)/$(haskell_kompiled)
150-
$(KEVM) solc-to-k $< Storage $(KEVM_OPTS) --verbose --definition $(KEVM_LIB)/$(haskell_dir) --main-module STORAGE-VERIFICATION > $@
151-
152-
.PHONY: tests/specs/examples/empty-bin-runtime.k
153-
tests/specs/examples/empty-bin-runtime.k: tests/specs/examples/Empty.sol $(KEVM_LIB)/$(haskell_kompiled)
154-
$(KEVM) solc-to-k $< Empty $(KEVM_OPTS) --verbose --definition $(KEVM_LIB)/$(haskell_dir) --main-module EMPTY-VERIFICATION > $@
155-
156134
.SECONDEXPANSION:
157135
tests/specs/%.prove: tests/specs/% tests/specs/$$(firstword $$(subst /, ,$$*))/$$(KPROVE_FILE)/$(TEST_SYMBOLIC_BACKEND)/timestamp
158136
$(UV_RUN) kevm-pyk prove $< $(KEVM_OPTS) $(KPROVE_OPTS) \

0 commit comments

Comments
 (0)