From 9590a4c9ccc2fde8b9c65407ec1e36e892db1db1 Mon Sep 17 00:00:00 2001 From: David Reiss Date: Mon, 18 Feb 2008 02:11:39 +0000 Subject: [PATCH] Change test scripts for Java to point to libthrift.jar in source tree. Summary: - They used to point at /usr/local/lib/libthrift.jar even though the build.xml pointed at a relative path in the source tree git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665483 13f79535-47bb-0310-9956-ffa450edef68 --- test/java/TestClient | 2 +- test/java/TestServer | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/java/TestClient b/test/java/TestClient index f4006d54..bcdffa21 100755 --- a/test/java/TestClient +++ b/test/java/TestClient @@ -1,2 +1,2 @@ #!/bin/bash -v -java -cp thrifttest.jar:/usr/local/lib/libthrift.jar com.facebook.thrift.test.TestClient $* +java -cp thrifttest.jar:../../lib/java/libthrift.jar com.facebook.thrift.test.TestClient $* diff --git a/test/java/TestServer b/test/java/TestServer index 40765413..360efdf5 100755 --- a/test/java/TestServer +++ b/test/java/TestServer @@ -1,2 +1,2 @@ #!/bin/bash -v -java -server -cp thrifttest.jar:/usr/local/lib/libthrift.jar com.facebook.thrift.test.TestServer $* +java -server -cp thrifttest.jar:../../lib/java/libthrift.jar com.facebook.thrift.test.TestServer $* -- 2.17.1