Weird issue with running tests

2013-04-29 Thread Sushanth Sowmyan
Hi folks, I'm running into a weird issue with testing HIVE-3682. I don't think it's so much to do with the jira at hand itself, as it is to do with the test or the testing framework. Basically, if I run the .q file test itself, it succeeds. If I run it as part of a broader ant test, it fails,

Re: Weird issue with running tests

2013-04-29 Thread Ashutosh Chauhan
Hi Sushanth, I would suggest to try dfs -cat in your test instead of !cat, because for ! we fork a different process, so its possible streams get mangled up, but dfs -cat would get you what you want without needing to fork. Thanks, Ashutosh On Mon, Apr 29, 2013 at 10:46 AM, Sushanth Sowmyan

Re: Weird issue with running tests

2013-04-29 Thread Sushanth Sowmyan
Aha, that makes sense. Thanks! On Mon, Apr 29, 2013 at 10:55 AM, Ashutosh Chauhan hashut...@apache.org wrote: Hi Sushanth, I would suggest to try dfs -cat in your test instead of !cat, because for ! we fork a different process, so its possible streams get mangled up, but dfs -cat would get