Commit 594a2d6f authored by Greg Williams's avatar Greg Williams
Browse files

Changed kinetic test port to default kinetic port and updated Ruby test server...

Changed kinetic test port to default kinetic port and updated Ruby test server to use it to get system test a little further on TravisCI until lack of response is figured out from Java simulator
parent bcfb2d2d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -222,7 +222,7 @@ namespace :test_server do
  end

  task :start do
    $test_server ||= KineticTestServer.new(TEST_KINETIC_PORT)
    $test_server ||= KineticTestServer.new(DEFAULT_KINETIC_PORT)
    $test_server.start
  end

+1 −1
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@
#include "kinetic_message.h"

static int FileDesc;
static int KineticTestPort = 8999;
static int KineticTestPort = KINETIC_PORT; //8999;
const char* TestData = "Some like it hot!";

void setUp(void)
+1 −0
Original line number Diff line number Diff line
@@ -56,6 +56,7 @@ void test_NoOp_should_succeed(void)
    KineticApi_Init(NULL);

    success = KineticApi_Connect(&connection, "localhost", KINETIC_PORT, true);

    TEST_ASSERT_TRUE(success);
    TEST_ASSERT(connection.socketDescriptor >= 0);