Change test scripts for Java to point to libthrift.jar in source tree.
authorDavid Reiss <dreiss@apache.org>
Mon, 18 Feb 2008 02:11:39 +0000 (02:11 +0000)
committerDavid Reiss <dreiss@apache.org>
Mon, 18 Feb 2008 02:11:39 +0000 (02:11 +0000)
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
test/java/TestServer

index f4006d5..bcdffa2 100755 (executable)
@@ -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 $*
index 4076541..360efdf 100755 (executable)
@@ -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 $*