Procházet zdrojové kódy

add a very dumb pause method to stop test-execution

David Kalnischkies před 15 roky
rodič
revize
89a1aa5dd5
1 změnil soubory, kde provedl 6 přidání a 0 odebrání
  1. 6 0
      test/integration/framework

+ 6 - 0
test/integration/framework

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