summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Kalnischkies <kalnischkies@gmail.com>2011-06-06 21:23:00 +0200
committerDavid Kalnischkies <kalnischkies@gmail.com>2011-06-06 21:23:00 +0200
commit89a1aa5dd55a3469c92720c7fcb90779f90b61f0 (patch)
tree1d32824e77149ceb46d924222fdbcfceac308c06
parentaa833344f36bb81fb79c9d1dbe8f9240a00fc645 (diff)
add a very dumb pause method to stop test-execution
-rw-r--r--test/integration/framework6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/integration/framework b/test/integration/framework
index cc5af798c..96cdb5f5e 100644
--- a/test/integration/framework
+++ b/test/integration/framework
@@ -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
+}