runtest: -i sets WINETEST_INTERACTIVE=1 and enables even more tests.
This commit is contained in:
parent
62ac036bc6
commit
baac2a6c59
|
@ -33,6 +33,7 @@ input_file: the source code for the test program
|
||||||
Options:
|
Options:
|
||||||
-q quiet mode
|
-q quiet mode
|
||||||
-v verbose mode (can be specified multiple times)
|
-v verbose mode (can be specified multiple times)
|
||||||
|
-i interactive mode (runs even more tests)
|
||||||
-s announce successful tests
|
-s announce successful tests
|
||||||
-p prog name of the program to run for C tests
|
-p prog name of the program to run for C tests
|
||||||
-P name set the current platform name
|
-P name set the current platform name
|
||||||
|
@ -62,6 +63,10 @@ while [ "$#" -gt 0 ]; do
|
||||||
-v)
|
-v)
|
||||||
WINETEST_DEBUG=`expr $WINETEST_DEBUG + 1`
|
WINETEST_DEBUG=`expr $WINETEST_DEBUG + 1`
|
||||||
;;
|
;;
|
||||||
|
-i)
|
||||||
|
WINETEST_INTERACTIVE=1
|
||||||
|
export WINETEST_INTERACTIVE
|
||||||
|
;;
|
||||||
-s)
|
-s)
|
||||||
WINETEST_REPORT_SUCCESS=1
|
WINETEST_REPORT_SUCCESS=1
|
||||||
export WINETEST_REPORT_SUCCESS
|
export WINETEST_REPORT_SUCCESS
|
||||||
|
|
Loading…
Reference in New Issue