summaryrefslogtreecommitdiff
path: root/tests/manual/debugger
diff options
context:
space:
mode:
authorRobert Loehning <robert.loehning@qt.io>2017-08-11 18:37:15 +0200
committerRobert Loehning <robert.loehning@qt.io>2017-08-15 12:06:37 +0000
commite204e514d945e6be503773f40547212dbac4ea35 (patch)
tree6c0722f3334e252136c1bca1f7220c8f72cf42a8 /tests/manual/debugger
parentd8fd5292f17bd07d390500f5daa10b46d5573a49 (diff)
downloadqt-creator-e204e514d945e6be503773f40547212dbac4ea35.tar.gz
Tests: Fix instructions to testers
Change-Id: Ie22fca7cb68132876f867b57d7e1e5362289e0a4 Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'tests/manual/debugger')
-rw-r--r--tests/manual/debugger/simple/simple_test_app.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/manual/debugger/simple/simple_test_app.cpp b/tests/manual/debugger/simple/simple_test_app.cpp
index 3bbe0d5520..c4fc3b705b 100644
--- a/tests/manual/debugger/simple/simple_test_app.cpp
+++ b/tests/manual/debugger/simple/simple_test_app.cpp
@@ -2355,7 +2355,7 @@ namespace final {
BREAK_HERE;
// Continue.
- return; // Uncomment.
+ return; // Comment out.
*(int *)0 = a + b;
}
@@ -2364,7 +2364,7 @@ namespace final {
BREAK_HERE;
// Continue.
- return; // Uncomment.
+ return; // Comment out.
testEndlessRecursion(i + 1);
}
@@ -2429,7 +2429,7 @@ namespace final {
// Check pp 21 int &.
// Check qq <null reference> int &.
// Continue.
- return; // Uncomment.
+ return; // Comment out.
testNullReferenceHelper(pp, qq);
dummyStatement(p, q, &i);
}