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.
26 lines
834 B
Text
26 lines
834 B
Text
import Lean
|
|
|
|
open Lean
|
|
open Lean.Meta
|
|
|
|
-- Return true if `declName` should be ignored
|
|
def shouldIgnore (declName : Name) : Bool :=
|
|
declName.isInternal
|
|
|| match declName with
|
|
| .str _ s => "match_".isPrefixOf s || "proof_".isPrefixOf s || "eq_".isPrefixOf s
|
|
| _ => true
|
|
|
|
-- Print declarations that have the given prefix.
|
|
def printDecls (pre : Name) : MetaM Unit := do
|
|
let cs := (← getEnv).constants
|
|
cs.forM fun declName info => do
|
|
if pre.isPrefixOf declName && !shouldIgnore declName then
|
|
if let some docString ← findDocString? (← getEnv) declName then
|
|
IO.println s!"/-- {docString} -/\n{declName} : {← ppExpr info.type}"
|
|
else
|
|
IO.println s!"{declName} : {← ppExpr info.type}"
|
|
|
|
#eval printDecls `Array
|
|
#eval printDecls `List
|
|
#eval printDecls `Bool
|
|
#eval printDecls `Lean.Elab
|