mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-22 22:00:49 +00:00
add --verbose
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@32317 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
708b252f4d
commit
8426d7f77d
1 changed files with 10 additions and 1 deletions
|
@ -70,6 +70,9 @@ do
|
|||
cat $GSTESTTOP/README
|
||||
exit 0
|
||||
;;
|
||||
--verbose)
|
||||
GSVERBOSE=yes
|
||||
;;
|
||||
--failfast)
|
||||
GSTESTMODE=failfast
|
||||
;;
|
||||
|
@ -83,6 +86,7 @@ do
|
|||
echo "Use 'gnustep-tests --clean' to remove old logs and leftover files."
|
||||
echo "Use 'gnustep-tests --failfast' to stop after the first failure."
|
||||
echo "Use 'gnustep-tests --debug' to run gdb for any failed tests."
|
||||
echo "Use 'gnustep-tests --verbose' for full/detailed log output."
|
||||
echo
|
||||
echo "Interpreting the output"
|
||||
echo "-----------------------"
|
||||
|
@ -327,7 +331,12 @@ run_test_file ()
|
|||
echo Testing $TESTFILE... >> $GSTESTLOG
|
||||
echo >> $GSTESTSUM
|
||||
|
||||
build_and_run > $GSTESTLOG.tmp 2>&1
|
||||
if test x"$GSVERBOSE" = xyes
|
||||
then
|
||||
build_and_run 2>&1 | tee $GSTESTLOG.tmp
|
||||
else
|
||||
build_and_run > $GSTESTLOG.tmp 2>&1
|
||||
fi
|
||||
RUNEXIT=$?
|
||||
|
||||
# Add the information to the detailed log.
|
||||
|
|
Loading…
Reference in a new issue