aboutsummaryrefslogtreecommitdiff
path: root/test/test/ShowClassTests.scala
diff options
context:
space:
mode:
authorDmitry Petrashko <dmitry.petrashko@gmail.com>2014-04-02 18:08:52 +0200
committerDmitry Petrashko <dmitry.petrashko@gmail.com>2014-04-02 18:19:14 +0200
commitb3983a403070aa1b693557a931dbd08bf2bfa56e (patch)
tree9b69e4601a4ed72df33dc0c126250c2202395a91 /test/test/ShowClassTests.scala
parentc8feb0ccb543b01ac27da788050b12c0a0221e36 (diff)
downloaddotty-b3983a403070aa1b693557a931dbd08bf2bfa56e.tar.gz
dotty-b3983a403070aa1b693557a931dbd08bf2bfa56e.tar.bz2
dotty-b3983a403070aa1b693557a931dbd08bf2bfa56e.zip
Reduce verbosity of logs.
We are already over limit on output size imposed by travis that is shown in webpage, if we'll continue to add tests will be soon over limit even to run builds. This commit disables printing of classpath, and removes printlns in several places. In order for ShowClassTests to print info as is was printing previously, please set "test.ShowClassTests.verbose" property.
Diffstat (limited to 'test/test/ShowClassTests.scala')
-rw-r--r--test/test/ShowClassTests.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test/ShowClassTests.scala b/test/test/ShowClassTests.scala
index 5c6cb8d58..6e37e8c93 100644
--- a/test/test/ShowClassTests.scala
+++ b/test/test/ShowClassTests.scala
@@ -13,7 +13,7 @@ import org.junit.Test
class ShowClassTests extends DottyTest {
def debug_println(msg: => Any) = {
- if (!sys.props.isDefinedAt("dotty.travis.build"))
+ if (sys.props.isDefinedAt("test.ShowClassTests.verbose"))
println(msg)
}