@@ -103,7 +103,7 @@ namespace swift::test {
103103// - the value
104104// - whether it has a pointer escape
105105static FunctionTest OwnershipUtilsHasPointerEscape (
106- " has-pointer-escape " , [](auto &function, auto &arguments, auto &test) {
106+ " has_pointer_escape " , [](auto &function, auto &arguments, auto &test) {
107107 auto value = arguments.takeValue ();
108108 auto has = findPointerEscape (value);
109109 value->print (llvm::outs ());
@@ -2144,7 +2144,7 @@ namespace swift::test {
21442144// - function
21452145// - the enclosing defs
21462146static FunctionTest FindEnclosingDefsTest (
2147- " find-enclosing-defs " , [](auto &function, auto &arguments, auto &test) {
2147+ " find_enclosing_defs " , [](auto &function, auto &arguments, auto &test) {
21482148 function.print (llvm::outs ());
21492149 llvm::outs () << " Enclosing Defs:\n " ;
21502150 visitEnclosingDefs (arguments.takeValue (), [](SILValue def) {
@@ -2169,7 +2169,7 @@ namespace swift::test {
21692169// - function
21702170// - the borrow introducers
21712171static FunctionTest FindBorrowIntroducers (
2172- " find-borrow-introducers " , [](auto &function, auto &arguments, auto &test) {
2172+ " find_borrow_introducers " , [](auto &function, auto &arguments, auto &test) {
21732173 function.print (llvm::outs ());
21742174 llvm::outs () << " Introducers:\n " ;
21752175 visitBorrowIntroducers (arguments.takeValue (), [](SILValue def) {
@@ -2288,7 +2288,7 @@ namespace swift::test {
22882288// - function
22892289// - the adjacent phis
22902290static FunctionTest VisitInnerAdjacentPhisTest (
2291- " visit-inner-adjacent-phis " ,
2291+ " visit_inner_adjacent_phis " ,
22922292 [](auto &function, auto &arguments, auto &test) {
22932293 function.print (llvm::outs ());
22942294 visitInnerAdjacentPhis (cast<SILPhiArgument>(arguments.takeValue ()),
0 commit comments