summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2017-12-06 10:34:34 +0100
committerhjk <hjk@qt.io>2017-12-06 10:48:46 +0000
commit2b18af321a013e4e75d83ab6edf0bfddd664a5b1 (patch)
tree6ff15308bb1a45778b9064a29bc87b72a12cb67d
parent1f6d2e067ed46e3249c0c28ec79fae090ba33800 (diff)
downloadqt-creator-2b18af321a013e4e75d83ab6edf0bfddd664a5b1.tar.gz
Debugger: Add test for new Debian gdb version string
Change-Id: I006fb9ae57610d2be65c1d6b83fa38660a5326aa Reviewed-by: Christian Stenger <christian.stenger@qt.io>
-rw-r--r--tests/auto/debugger/tst_gdb.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/auto/debugger/tst_gdb.cpp b/tests/auto/debugger/tst_gdb.cpp
index 680c2c524f..5b946a1936 100644
--- a/tests/auto/debugger/tst_gdb.cpp
+++ b/tests/auto/debugger/tst_gdb.cpp
@@ -125,6 +125,10 @@ void tst_gdb::version_data()
QTest::newRow("Fedora 26")
<< "GNU gdb (GDB) Fedora 8.0-13.fc26"
<< 80000 << 13 << false << false;
+
+ QTest::newRow("Debian 7.12 git")
+ << "GNU gdb (Debian 7.12-6) 7.12.0.20161007-git"
+ << 71200 << 6 << false << false;
}
static QString chopConst(QString type)