Author: gates
Date: Wed May  7 16:18:06 2008
New Revision: 654319

URL: http://svn.apache.org/viewvc?rev=654319&view=rev
Log:
Changed TestBinaryStorage to create it's test file in the local directory 
instead of /pig.  This fixes the test in local mode on linux machines.


Modified:
    incubator/pig/trunk/test/org/apache/pig/test/TestBinaryStorage.java

Modified: incubator/pig/trunk/test/org/apache/pig/test/TestBinaryStorage.java
URL: 
http://svn.apache.org/viewvc/incubator/pig/trunk/test/org/apache/pig/test/TestBinaryStorage.java?rev=654319&r1=654318&r2=654319&view=diff
==============================================================================
--- incubator/pig/trunk/test/org/apache/pig/test/TestBinaryStorage.java 
(original)
+++ incubator/pig/trunk/test/org/apache/pig/test/TestBinaryStorage.java Wed May 
 7 16:18:06 2008
@@ -83,7 +83,7 @@
         pigServer.registerQuery("OP = stream IP through CMD;");
 
         // Save the output using BinaryStorage
-        String output = "/pig/out";
+        String output = "./pig.BinaryStorage.out";
         pigServer.store("OP", output, "BinaryStorage()");
         
         // Get output data 


Reply via email to