Unverified Commit 479e27c9 authored by Jason Simmons's avatar Jason Simmons Committed by GitHub

Update stack trace test goldens to handle engine builds with lazy async stacks (#51216)

The next engine roll will introduce --lazy-async-stacks, which affects the
contents of stack traces.  This updates test expectations to match both the
old and new stack trace formats.
parent d5844e8a
...@@ -9,7 +9,7 @@ When the exception was thrown, this was the stack: ...@@ -9,7 +9,7 @@ When the exception was thrown, this was the stack:
#(1|2) .+ \(package:flutter_test[/\\]src[/\\]widget_tester\.dart:[0-9]+:[0-9]+\) #(1|2) .+ \(package:flutter_test[/\\]src[/\\]widget_tester\.dart:[0-9]+:[0-9]+\)
<asynchronous suspension> <asynchronous suspension>
<<skip until matching line>> <<skip until matching line>>
^\(elided [0-9]+ frames.+$ ^\(elided ([0-9]+|one) frame.+$
<<skip until matching line>> <<skip until matching line>>
The test description was: The test description was:
Exception handling in test harness - string Exception handling in test harness - string
...@@ -29,7 +29,7 @@ When the exception was thrown, this was the stack: ...@@ -29,7 +29,7 @@ When the exception was thrown, this was the stack:
#(1|2) .+ \(package:flutter_test[/\\]src[/\\]widget_tester\.dart:[0-9]+:[0-9]+\) #(1|2) .+ \(package:flutter_test[/\\]src[/\\]widget_tester\.dart:[0-9]+:[0-9]+\)
<asynchronous suspension> <asynchronous suspension>
<<skip until matching line>> <<skip until matching line>>
^\(elided [0-9]+ .+$ ^\(elided ([0-9]+|one) .+$
<<skip until matching line>> <<skip until matching line>>
The test description was: The test description was:
Exception handling in test harness - FlutterError Exception handling in test harness - FlutterError
...@@ -52,7 +52,7 @@ When the exception was thrown, this was the stack: ...@@ -52,7 +52,7 @@ When the exception was thrown, this was the stack:
<<skip until matching line>> <<skip until matching line>>
#[0-9]+ +.+ \(package:flutter_test[/\\]src[/\\]widget_tester\.dart:[0-9]+:[0-9]+\) #[0-9]+ +.+ \(package:flutter_test[/\\]src[/\\]widget_tester\.dart:[0-9]+:[0-9]+\)
<<skip until matching line>> <<skip until matching line>>
^\(elided [0-9]+ .+$ ^\(elided ([0-9]+|one) .+$
<<skip until matching line>> <<skip until matching line>>
The test description was: The test description was:
Exception handling in test harness - uncaught Future error Exception handling in test harness - uncaught Future error
......
...@@ -15,11 +15,11 @@ statement in front of the call to the first\. ...@@ -15,11 +15,11 @@ statement in front of the call to the first\.
When the first method was called, this was the stack: When the first method was called, this was the stack:
<<skip until matching line>> <<skip until matching line>>
(elided [0-9]+ frames from .+) (elided ([0-9]+|one) frames? from .+)
When the exception was thrown, this was the stack: When the exception was thrown, this was the stack:
<<skip until matching line>> <<skip until matching line>>
(elided [0-9]+ frames from .+) (elided ([0-9]+|one) frames? from .+)
The test description was: The test description was:
TestAsyncUtils - handling unguarded async helper functions TestAsyncUtils - handling unguarded async helper functions
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment