aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorRobert Loehning <robert.loehning@qt.io>2018-07-02 17:11:29 +0200
committerRobert Loehning <robert.loehning@qt.io>2018-07-03 09:22:08 +0000
commit417a6db08776ab5f49389e974a777fb78f1de3eb (patch)
treec199723ff44d55bba69fce6841ffeb89e3a382ae /tests
parent29e6659e90c98414150253ddeadbf4fa46c9b86a (diff)
Tests: Add lines for testing editing and output of int
Change-Id: If31b5957fa55f5dd31205a0b4495491314fa87c0 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'tests')
-rw-r--r--tests/manual/debugger/cli-io/main.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/manual/debugger/cli-io/main.cpp b/tests/manual/debugger/cli-io/main.cpp
index 831b37b5a7..830663a666 100644
--- a/tests/manual/debugger/cli-io/main.cpp
+++ b/tests/manual/debugger/cli-io/main.cpp
@@ -36,9 +36,11 @@ int main(int argc, char *argv[])
QString qs("I'm a QString");
std::string stds("I'm a std::string");
char c[] = "I'm a char c[]";
+ int i = 1892;
qDebug() << "This is a QString:" << qs;
std::cout << "This is a std::string: " << stds << std::endl;
std::cout << "This is a char c[]: " << c << std::endl;
+ std::cout << "This is an int: " << i << std::endl;
qDebug() << "This is QDebug";
std::cout << "This is stdout" << std::endl;