Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ language: scala
scala:
- 2.11.1

sudo: false

jdk:
- openjdk6
- openjdk7
Expand All @@ -12,7 +14,14 @@ branches:
only:
- /^v07.*$/

script: sbt ++$TRAVIS_SCALA_VERSION test
script:
- sbt ++$TRAVIS_SCALA_VERSION test
- find $HOME/.sbt -name "*.lock" | xargs rm
- find $HOME/.ivy2 -name "ivydata-*.properties" | xargs rm

cache:
directories:
- $HOME/.ivy2/cache

notifications:
email:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ class MessageUnpackerTest extends MessagePackSpec {
val mb = MessageBuffer.wrap(arr)

val N = 1000
val t = time("unpacker", repeat = 10) {
val t = time("unpacker", repeat = 30) {
block("no-buffer-reset") {
IOUtil.withResource(msgpack.newUnpacker(arr)) { unpacker =>
for (i <- 0 until N) {
Expand Down