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.
24 lines
688 B
Text
24 lines
688 B
Text
theorem byTopLevelNoIndent : ∀ (n : Nat), n > 1 → n > 1 :=
|
|
fun n h => h
|
|
byStrictIndent.lean:12:2: error: expected '{' or indented tactic sequence
|
|
byStrictIndent.lean:11:25-11:27: error: unsolved goals
|
|
n : Nat
|
|
h : n > 0
|
|
⊢ n > 1
|
|
byStrictIndent.lean:10:62-11:27: error: unsolved goals
|
|
n : Nat
|
|
h : n > 0
|
|
helper : n > 1
|
|
⊢ n > 1
|
|
byStrictIndent.lean:16:54-18:9: error: unsolved goals
|
|
n : Nat
|
|
h : n > 0
|
|
helper : n > 1
|
|
⊢ n > 1
|
|
byStrictIndent.lean:19:3-19:8: error: unexpected token 'sorry'; expected command
|
|
byStrictIndent.lean:22:54-24:9: error: unsolved goals
|
|
n : Nat
|
|
h : n > 0
|
|
helper : n > 1
|
|
⊢ n > 1
|
|
byStrictIndent.lean:25:6-25:11: error: unexpected token 'sorry'; expected command
|