Skip to content

Commit d66362e

Browse files
committed
Added TestVectorOfVectorsFromStdModule
1 parent 4736ff6 commit d66362e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lldb/test/API/commands/expression/import-std-module/vector-of-vectors/TestVectorOfVectorsFromStdModule.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,5 @@ def test(self):
6060
"a.front().front()", result_type=value_type, result_value="1"
6161
)
6262
self.expect_expr("a[1][1]", result_type=value_type, result_value="2")
63-
self.expect_expr("a.back().at(0)", result_type=value_type, result_value="3")
63+
# Note calling at(0) may fail because of compiler optimizations.
64+
self.expect_expr("a.back()[0]", result_type=value_type, result_value="3")

0 commit comments

Comments
 (0)