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
820 B
Text
26 lines
820 B
Text
import Lean.Elab.Command
|
|
|
|
open Lean Elab Command
|
|
|
|
elab tk:"#guard_msg_kind " kind:ident " in " cmd:command : command => do
|
|
let initMsgs ← modifyGet fun st => (st.messages, {st with messages := {}})
|
|
elabCommandTopLevel cmd
|
|
let msgs ← modifyGet fun st => (st.messages, {st with messages := initMsgs})
|
|
let kind := kind.getId
|
|
for msg in msgs.toList do
|
|
if msg.kind != kind then
|
|
logErrorAt tk s!"expected {kind}, got {msg.kind}"
|
|
|
|
/- Test inferring kind from a tag. -/
|
|
#guard_msg_kind custom in
|
|
run_cmd do logInfo <| .tagged `custom ""
|
|
|
|
/- Test trace message kind. -/
|
|
#guard_msg_kind trace in
|
|
set_option trace.Elab.step true in
|
|
def trace := ()
|
|
|
|
/- Test linter kind. -/
|
|
#guard_msg_kind linter.unusedVariables in
|
|
#guard_msgs (info) in -- hack to avoid re-triggering the linter
|
|
def unused (x : Unit) := ()
|