Jörg Höhle : runtest: -i sets WINETEST_INTERACTIVE=1 and enables even more tests.

Alexandre Julliard julliard at winehq.org
Fri Oct 16 11:26:08 CDT 2009


Module: wine
Branch: master
Commit: baac2a6c59577e2a385d5a86c399c872a389e16e
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=baac2a6c59577e2a385d5a86c399c872a389e16e

Author: Jörg Höhle <hoehle at users.sourceforge.net>
Date:   Sat Oct 10 05:54:16 2009 +0200

runtest: -i sets WINETEST_INTERACTIVE=1 and enables even more tests.

---

 tools/runtest |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/tools/runtest b/tools/runtest
index ad8ef72..86f8680 100755
--- a/tools/runtest
+++ b/tools/runtest
@@ -33,6 +33,7 @@ input_file:  the source code for the test program
 Options:
     -q       quiet mode
     -v       verbose mode (can be specified multiple times)
+    -i       interactive mode (runs even more tests)
     -s       announce successful tests
     -p prog  name of the program to run for C tests
     -P name  set the current platform name
@@ -62,6 +63,10 @@ while [ "$#" -gt 0 ]; do
     -v)
 	WINETEST_DEBUG=`expr $WINETEST_DEBUG + 1`
     ;;
+    -i)
+	WINETEST_INTERACTIVE=1
+	export WINETEST_INTERACTIVE
+    ;;
     -s)
 	WINETEST_REPORT_SUCCESS=1
 	export WINETEST_REPORT_SUCCESS




More information about the wine-cvs mailing list