Skip to content

Commit

Permalink
Merge pull request #145 from coq-community/add-try-test
Browse files Browse the repository at this point in the history
add tests for try aac_rewrite and try aac_normalise
  • Loading branch information
palmskog authored Jun 27, 2024
2 parents 8ba7a8b + 8f5ebce commit 5c133d3
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [Unreleased]

### Added

- Tests for `try aac_rewrite` and `try aac_normalise` that failed on 8.19

## [8.19.1] - 2024-06-01

### Added
Expand Down
1 change: 1 addition & 0 deletions tests/_CoqProject
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@
-R . Test

aac_135.v
aac_144.v
10 changes: 10 additions & 0 deletions tests/aac_144.v
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
From Coq Require Import ZArith.
From AAC_tactics Require Import AAC.

Goal forall X:Prop, X->X.
Succeed (try aac_rewrite Z.gcd_mod).
Abort.

Goal forall X:Prop, X->X.
Succeed (try aac_normalise).
Abort.

0 comments on commit 5c133d3

Please sign in to comment.