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.
29 lines
684 B
Text
29 lines
684 B
Text
theorem ex1 (p q r : Prop) (h1 : p ∨ q) (h2 : p → q) : q :=
|
||
have : q := by -- Error here
|
||
skip
|
||
by skip -- Error here
|
||
skip
|
||
|
||
theorem ex2 (p q r : Prop) (h1 : p ∨ q) (h2 : p → q) : q :=
|
||
have : q := by {
|
||
skip
|
||
} -- Error here
|
||
by skip -- Error here
|
||
skip
|
||
|
||
theorem ex3 (p q r : Prop) (h1 : p ∨ q) (h2 : p → q) : q := by
|
||
cases h1
|
||
{ skip
|
||
skip } -- Error here
|
||
{ skip
|
||
skip } -- Error here
|
||
|
||
theorem ex4 (p q r : Prop) (h1 : p ∨ q) (h2 : p → q) : q := by
|
||
first | done | apply ex3 p q r h1 h2
|
||
|
||
theorem ex5 (p q r : Prop) (h1 : p ∨ q) (h2 : p → q) : q := by
|
||
cases h1
|
||
· skip -- Error here
|
||
skip
|
||
· skip -- Error here
|
||
skip
|