Skip to content
This repository has been archived by the owner on Mar 26, 2023. It is now read-only.

Commit

Permalink
another try at fixing test result on travis
Browse files Browse the repository at this point in the history
  • Loading branch information
timfel committed Mar 3, 2014
1 parent 0da03d5 commit f9ad3d8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,11 @@ if ENV["TRAVIS"]

desc "Run vmunit tests on clean stone and again after update.sh ran"
task :"travis:vmunit" do
system "rake tests:vmunit"
system "./update.sh"
system "rake tests:vmunit"
unless system("rake tests:vmunit") &&
system("./update.sh") &&
system("rake tests:vmunit")
exit 1
end
end
end

Expand Down
2 changes: 1 addition & 1 deletion src/test/github338.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
require 'socket'

server = TCPServer.new 2000 # Server bind to port 2000
server = TCPServer.new "127.0.0.1", 2000 # Server bind to port 2000
output = []

def read_socket_message(socket, chunk_size = 2)
Expand Down

0 comments on commit f9ad3d8

Please sign in to comment.