summaryrefslogtreecommitdiff
path: root/indra/llmessage/tests
diff options
context:
space:
mode:
authorOz Linden <oz@lindenlab.com>2012-04-25 16:45:24 -0400
committerOz Linden <oz@lindenlab.com>2012-04-25 16:45:24 -0400
commit92ae8c8472b1efb961dd9b0bb8473425d8b703e4 (patch)
tree780e387e7777a9cd9a64e706eba86a1edff2ce49 /indra/llmessage/tests
parent1b832eaa4b5cbb9be2a3c92643ba62794931d1d2 (diff)
WOLF-318: change default verbosity of some unit tests to keep them out of the logs when passing
WOLF-363: (partial) correct ordering of cleaning build dir vs running 'autobuild install'
Diffstat (limited to 'indra/llmessage/tests')
-rw-r--r--indra/llmessage/tests/testrunner.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llmessage/tests/testrunner.py b/indra/llmessage/tests/testrunner.py
index f2c841532a..5b9beb359b 100644
--- a/indra/llmessage/tests/testrunner.py
+++ b/indra/llmessage/tests/testrunner.py
@@ -35,7 +35,7 @@ import re
import errno
import socket
-VERBOSE = os.environ.get("INTEGRATION_TEST_VERBOSE", "1") # default to verbose
+VERBOSE = os.environ.get("INTEGRATION_TEST_VERBOSE", "0") # default to quiet
# Support usage such as INTEGRATION_TEST_VERBOSE=off -- distressing to user if
# that construct actually turns on verbosity...
VERBOSE = not re.match(r"(0|off|false|quiet)$", VERBOSE, re.IGNORECASE)