Skip to content

Commit

Permalink
Temporarily re-enable CHECKED to ensure CI still passes
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott-Guest committed Dec 2, 2023
1 parent bbde842 commit 536db01
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion k-distribution/include/kframework/ktest-fail.mak
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ TESTS?=$(wildcard $(DEFDIR)/*.md) $(wildcard $(DEFDIR)/*.k)
KOMPILE_BACKEND?=llvm
KAST_TESTS?=$(wildcard ./*.kast)

KOMPILE_FLAGS+=--no-exc-wrap --type-inference-mode simplesub
KOMPILE_FLAGS+=--no-exc-wrap --type-inference-mode checked
KPROVE_FLAGS+=--no-exc-wrap
KRUN_FLAGS+=--no-exc-wrap

Expand Down
2 changes: 1 addition & 1 deletion k-distribution/include/kframework/ktest.mak
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ ifeq ($(UNAME), Darwin)
KOMPILE_FLAGS+=--no-haskell-binary
endif

KOMPILE_FLAGS+=--no-exc-wrap --type-inference-mode simplesub
KOMPILE_FLAGS+=--no-exc-wrap --type-inference-mode checked
KPROVE_FLAGS+=--no-exc-wrap
KRUN_FLAGS+=--no-exc-wrap

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ private ParseInModule(
this.typeInferenceDebug = typeInferenceDebug;
this.typeInferenceMode =
typeInferenceMode == KompileOptions.TypeInferenceMode.DEFAULT
? KompileOptions.TypeInferenceMode.Z3
? KompileOptions.TypeInferenceMode.CHECKED
: typeInferenceMode;
this.partialParseDebug = partialParseDebug;
}
Expand Down

0 comments on commit 536db01

Please sign in to comment.