add a very dumb pause method to stop test-execution
authorDavid Kalnischkies <kalnischkies@gmail.com>
Mon, 6 Jun 2011 19:23:00 +0000 (21:23 +0200)
committerDavid Kalnischkies <kalnischkies@gmail.com>
Mon, 6 Jun 2011 19:23:00 +0000 (21:23 +0200)
test/integration/framework

index cc5af79..96cdb5f 100644 (file)
@@ -708,3 +708,9 @@ testmarkedauto() {
        fi
        aptmark showauto 2>&1 | checkdiff $COMPAREFILE - && msgpass || msgfail
 }
+
+pause() {
+       echo "STOPPED execution. Press enter to continue"
+       local IGNORE
+       read IGNORE
+}