Skip to content

Commit

Permalink
resolve merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
kim-em committed Nov 16, 2023
2 parents a65c377 + 19207d2 commit dde2ea9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ name: continuous integration
jobs:
build:
name: test
runs-on: ubuntu-latest
steps:
- name: install elan
run: |
Expand Down
6 changes: 5 additions & 1 deletion test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,11 @@ check_command "lake exe lean4checker Lean4CheckerTests.AddFalseConstructor" "unc

check_command "lake exe lean4checker --fresh Lean4CheckerTests.UseFalseConstructor" "uncaught exception: (kernel) unknown constant 'False.intro'"

check_command "lake exe lean4checker Lean4CheckerTests.ReduceBool" "uncaught exception: (kernel) unknown declaration 'foo'"
# The 'ReduceBool' test writes to a temporary file.
# We clean up before and afterwards for consistency, although neither should be required.
rm -f .lean4checker.tmp
check_command "lake exe lean4checker Lean4Checker.Tests.ReduceBool" "uncaught exception: (kernel) unknown declaration 'foo'"
rm -f .lean4checker.tmp

check_command "lake exe lean4checker Lean4CheckerTests.OverridenPrelude" "TODO"

Expand Down

0 comments on commit dde2ea9

Please sign in to comment.