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.
67 lines
1.2 KiB
Text
67 lines
1.2 KiB
Text
import Lean
|
|
open Lean PrettyPrinter
|
|
|
|
def fmt (stx : CoreM Syntax) : CoreM Format := do PrettyPrinter.ppTerm ⟨← stx⟩
|
|
|
|
#eval fmt `(if c then do t else e)
|
|
#eval fmt `(if c then do t; t else e)
|
|
#eval fmt `(if c then do t else do e)
|
|
#eval fmt `(if let x := c then do t else do e)
|
|
#eval fmt `(if c then do t else if c then do t else do e) -- FIXME: make this cascade better?
|
|
#eval fmt `(do if c then t else e)
|
|
#eval fmt `(do if c then t else if c then t else e)
|
|
|
|
#eval fmt `(def foo := by
|
|
· skip; skip
|
|
· skip; skip
|
|
skip
|
|
(skip; skip)
|
|
(skip; skip
|
|
try skip; skip
|
|
try skip
|
|
skip
|
|
skip))
|
|
|
|
#eval fmt `(by
|
|
try
|
|
skip
|
|
skip)
|
|
|
|
set_option format.indent 3 in
|
|
#eval fmt `(by
|
|
try
|
|
skip
|
|
skip)
|
|
set_option format.indent 4 in
|
|
#eval fmt `(by
|
|
try
|
|
skip
|
|
skip)
|
|
set_option format.indent 4 in
|
|
#eval fmt `(by
|
|
try
|
|
skip
|
|
skip
|
|
skip)
|
|
|
|
#eval fmt `({
|
|
foo := bar
|
|
bar := foo + bar
|
|
})
|
|
|
|
#eval fmt `(let x := { foo := bar
|
|
bar := foo + bar }
|
|
x)
|
|
|
|
#eval fmt `(command|
|
|
def foo : a b c d e f g a b c d e f g h where
|
|
h := 42
|
|
i := 42
|
|
j := 42
|
|
k := 42)
|
|
|
|
#eval fmt `(calc
|
|
1 = 1 := rfl
|
|
1 = 1 := rfl)
|
|
|
|
#eval fmt `(by rw [] at h)
|