Skip to content

Commit 84dbc06

Browse files
Fix expected line number in TestRunner.py.
llvmGH-73541 added lines to llvm/utils/lit/tests/Inputs/testrunner-custom-parsers/test.txt so what was previously on line 7 is now on line 12.
1 parent 4e2216e commit 84dbc06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/utils/lit/tests/unit/TestRunner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ def test_commands(self):
132132
value = cmd_parser.getValue()
133133
self.assertEqual(len(value), 2) # there are only two run lines
134134
self.assertEqual(value[0].command.strip(), "%dbg(MY_RUN: at line 4) baz")
135-
self.assertEqual(value[1].command.strip(), "%dbg(MY_RUN: at line 7) foo bar")
135+
self.assertEqual(value[1].command.strip(), "%dbg(MY_RUN: at line 12) foo bar")
136136

137137
def test_boolean(self):
138138
parsers = self.make_parsers()

0 commit comments

Comments
 (0)