forked from qt-creator/qt-creator
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:
@@ -2936,13 +2936,13 @@ void tst_Dumpers::dumper_data()
|
|||||||
+ Check("url0", "<invalid>", "@QUrl")
|
+ Check("url0", "<invalid>", "@QUrl")
|
||||||
+ Check5("url1", UnsubstitutedValue("\"http://foo@qt-project.org:10/have_fun\""), "@QUrl")
|
+ Check5("url1", UnsubstitutedValue("\"http://foo@qt-project.org:10/have_fun\""), "@QUrl")
|
||||||
+ Check5("url1.port", "10", "int")
|
+ Check5("url1.port", "10", "int")
|
||||||
+ Check5("url1.scheme", "\"http\"", "@QString")
|
+ Check5("url1.scheme", "\"http\"", "?QString")
|
||||||
+ Check5("url1.userName", "\"foo\"", "@QString")
|
+ Check5("url1.userName", "\"foo\"", "?QString")
|
||||||
+ Check5("url1.password", "\"\"", "@QString")
|
+ Check5("url1.password", "\"\"", "?QString")
|
||||||
+ Check5("url1.host", "\"qt-project.org\"", "@QString")
|
+ Check5("url1.host", "\"qt-project.org\"", "?QString")
|
||||||
+ Check5("url1.path", "\"/have_fun\"", "@QString")
|
+ Check5("url1.path", "\"/have_fun\"", "?QString")
|
||||||
+ Check5("url1.query", "\"\"", "@QString")
|
+ Check5("url1.query", "\"\"", "?QString")
|
||||||
+ Check5("url1.fragment", "\"\"", "@QString")
|
+ Check5("url1.fragment", "\"\"", "?QString")
|
||||||
|
|
||||||
// check Qt4 internal structure for QUrl
|
// check Qt4 internal structure for QUrl
|
||||||
+ Check4("url1", "", "@QUrl")
|
+ Check4("url1", "", "@QUrl")
|
||||||
|
Reference in New Issue
Block a user