tests/jv_libgdbs_tests.st
changeset 92 0f11fece852c
parent 91 472a4841a8b6
child 95 f417138e9c48
--- a/tests/jv_libgdbs_tests.st	Thu Nov 23 22:51:20 2017 +0000
+++ b/tests/jv_libgdbs_tests.st	Mon Nov 27 20:41:34 2017 +0000
@@ -103,6 +103,35 @@
     )
 ! !
 
+!jv_libgdbs_tests class methodsFor:'description - compilation'!
+
+additionalRules_make_dot_proto
+    "allows for additional rules to be added to the make.proto file."
+
+    ^ '
+.PHONY: testprograms
+
+testprograms:
+        $(MAKE) -C c
+
+clean::
+        $(MAKE) -C c clean
+
+clobber::
+        $(MAKE) -C c clobber
+'
+
+    "Created: / 23-11-2017 / 23:02:10 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+!
+
+additionalTargets_make_dot_proto
+    "allows for additional targets to be added to the make.proto file."
+
+    ^ 'testprograms'
+
+    "Created: / 23-11-2017 / 23:02:24 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+! !
+
 !jv_libgdbs_tests class methodsFor:'description - contents'!
 
 classNamesAndAttributes
@@ -118,10 +147,8 @@
         GDBInternalPipeStreamTests
         GDBMIParserTests
         GDBMIPrinterTests
-        GDBSimulatorProcessTests
         #'jv_libgdbs_tests'
         GDBDebuggerTestsR
-        GDBDebuggerTestsS
     )
 !