This PR sets up the new integrated test/bench suite. It then migrates all benchmarks and some related tests to the new suite. There's also some documentation and some linting. For now, a lot of the old tests are left alone so this PR doesn't become even larger than it already is. Eventually, all tests should be migrated to the new suite though so there isn't a confusing mix of two systems.
22 lines
395 B
Text
22 lines
395 B
Text
/-!
|
|
# Test for error reporting when `rw`/`rewrite` has an elaboration error
|
|
-/
|
|
|
|
/-!
|
|
Elaboration failures abort tactic evaluation.
|
|
Before, the second error was
|
|
```
|
|
error: tactic 'rewrite' failed, equality or iff proof expected
|
|
?m.5
|
|
⊢ True
|
|
```
|
|
-/
|
|
/--
|
|
error: Unknown identifier `not_a_theorem`
|
|
---
|
|
error: unsolved goals
|
|
⊢ True
|
|
-/
|
|
#guard_msgs in
|
|
example : True := by
|
|
rewrite [not_a_theorem]
|