Debugger: Make QUrl dumper test pass for LLDB on Linux

... by relaxing the namespace checks.

Change-Id: I2c2978fe4e95bdc87df24fd6ecbcba4bf1913df3
Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
This commit is contained in:
hjk
2015-04-15 15:43:51 +02:00
parent 340882f564
commit d3c06c9e4a

View File

@@ -2936,13 +2936,13 @@ void tst_Dumpers::dumper_data()
+ Check("url0", "<invalid>", "@QUrl")
+ Check5("url1", UnsubstitutedValue("\"http://foo@qt-project.org:10/have_fun\""), "@QUrl")
+ Check5("url1.port", "10", "int")
+ Check5("url1.scheme", "\"http\"", "@QString")
+ Check5("url1.userName", "\"foo\"", "@QString")
+ Check5("url1.password", "\"\"", "@QString")
+ Check5("url1.host", "\"qt-project.org\"", "@QString")
+ Check5("url1.path", "\"/have_fun\"", "@QString")
+ Check5("url1.query", "\"\"", "@QString")
+ Check5("url1.fragment", "\"\"", "@QString")
+ Check5("url1.scheme", "\"http\"", "?QString")
+ Check5("url1.userName", "\"foo\"", "?QString")
+ Check5("url1.password", "\"\"", "?QString")
+ Check5("url1.host", "\"qt-project.org\"", "?QString")
+ Check5("url1.path", "\"/have_fun\"", "?QString")
+ Check5("url1.query", "\"\"", "?QString")
+ Check5("url1.fragment", "\"\"", "?QString")
// check Qt4 internal structure for QUrl
+ Check4("url1", "", "@QUrl")