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.
14 lines
435 B
Text
14 lines
435 B
Text
opaque test1 {α : Sort _} : α → Sort u_1
|
||
/-- info: test1.{u_1, u_2} {α : Sort u_2} : α → Sort u_1 -/
|
||
#guard_msgs in
|
||
#check test1
|
||
|
||
def test2 {α : Sort _} : α → Sort u_1 := sorry
|
||
/-- info: test2.{u_1, u_2} {α : Sort u_2} : α → Sort u_1 -/
|
||
#guard_msgs in
|
||
#check test2
|
||
|
||
variable {α : Sort _} in def test3 : α → Sort _ := sorry
|
||
/-- info: test3.{u_1, u_2} {α : Sort u_1} : α → Sort u_2 -/
|
||
#guard_msgs in
|
||
#check test3
|