Skip to content

Commit

Permalink
[LLDB] Fix TestStructuredBinding.py for libstdc++
Browse files Browse the repository at this point in the history
For the tuple case for the TestStructuredBinding.py the result type is different
between libc++ and libstdc++.
  • Loading branch information
shafik committed Feb 17, 2022
1 parent df2812d commit f6d3901
Showing 1 changed file with 6 additions and 6 deletions.
Expand Up @@ -75,10 +75,10 @@ def test(self):
self.expect_expr("iarr_copy2", result_type="int", result_value="33")
self.expect_expr("iarr_copy3", result_type="int", result_value="44")

self.expect_expr("tx1", result_type="float", result_value="4")
self.expect_expr("ty1", result_type="char", result_value="'z'")
self.expect_expr("tz1", result_type="int", result_value="10")
self.expect_expr("tx1", result_value="4")
self.expect_expr("ty1", result_value="'z'")
self.expect_expr("tz1", result_value="10")

self.expect_expr("tx2", result_type="float", result_value="4")
self.expect_expr("ty2", result_type="char", result_value="'z'")
self.expect_expr("tz2", result_type="int", result_value="10")
self.expect_expr("tx2", result_value="4")
self.expect_expr("ty2", result_value="'z'")
self.expect_expr("tz2", result_value="10")

0 comments on commit f6d3901

Please sign in to comment.