Skip to content

Commit f9465c1

Browse files
committed
Test for boolean literals in TestFramVarDILLiterals.py
1 parent 097c19c commit f9465c1

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

lldb/test/API/commands/frame/var-dil/expr/Literals/TestFrameVarDILLiterals.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ def test_literals(self):
1919

2020
self.runCmd("settings set target.experimental.use-DIL true")
2121

22+
# Check boolean literals parsing
23+
self.expect_var_path("true", value="true", type="bool")
24+
self.expect_var_path("false", value="false", type="bool")
25+
2226
# Check number literals parsing
2327
self.expect_var_path("1.0", value="1", type="double")
2428
self.expect_var_path("1.0f", value="1", type="float")

0 commit comments

Comments
 (0)