tests/GDBDebuggerTestsR.st
changeset 86 7f53d51a0a65
parent 79 303c4edc75ad
child 87 50e80d25ea6f
--- a/tests/GDBDebuggerTestsR.st	Tue Jul 11 23:37:04 2017 +0200
+++ b/tests/GDBDebuggerTestsR.st	Wed Jul 12 16:27:29 2017 +0200
@@ -53,6 +53,7 @@
     self assert: inferior1 threads size == 1.
     thread1 := inferior1 threads anElement.
     self assert: thread1 stack size == 2.
+    self assert: thread1 status isStopped.
     frame1 := thread1 stack first.
     frame2 := thread1 stack second.
     self assert: frame1 variables size == 1.
@@ -74,7 +75,7 @@
     debugger send: 'quit' andWait: false.
 
     "Created: / 28-02-2015 / 00:55:55 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-    "Modified: / 01-06-2017 / 21:44:22 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 12-07-2017 / 13:55:19 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 test_03