diff options
author | David Kalnischkies <kalnischkies@gmail.com> | 2011-06-06 21:23:00 +0200 |
---|---|---|
committer | David Kalnischkies <kalnischkies@gmail.com> | 2011-06-06 21:23:00 +0200 |
commit | 89a1aa5dd55a3469c92720c7fcb90779f90b61f0 (patch) | |
tree | 1d32824e77149ceb46d924222fdbcfceac308c06 /test/integration/framework | |
parent | aa833344f36bb81fb79c9d1dbe8f9240a00fc645 (diff) |
add a very dumb pause method to stop test-execution
Diffstat (limited to 'test/integration/framework')
-rw-r--r-- | test/integration/framework | 6 |
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 +} |