You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jira@arrow.apache.org by "Andy Grove (Jira)" <ji...@apache.org> on 2020/10/05 23:48:00 UTC

[jira] [Updated] (ARROW-10186) [Rust] Tests fail when following instructions in README

     [ https://issues.apache.org/jira/browse/ARROW-10186?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Andy Grove updated ARROW-10186:
-------------------------------
    Description: 
If I follow the instructions from the README and set the test paths as follows, some of the IPC tests fail with "no such file or directory".
{code:java}
export PARQUET_TEST_DATA=../cpp/submodules/parquet-testing/data
export ARROW_TEST_DATA=../testing/data  {code}
If I change them to relative paths as follows then the tests pass:
{code:java}
export PARQUET_TEST_DATA=`pwd`/../cpp/submodules/parquet-testing/data
export ARROW_TEST_DATA=`pwd`/../testing/data  {code}
 

  was:
If I follow the instructions from the README and set the test paths as follows, some of the IPC tests fail with "no such file or directory".

```bash

 export PARQUET_TEST_DATA=../cpp/submodules/parquet-testing/data
 export ARROW_TEST_DATA=../testing/data

```

If I change them to relative paths as follows then the tests pass:

 

```bash

export PARQUET_TEST_DATA=`pwd`/../cpp/submodules/parquet-testing/data

export ARROW_TEST_DATA=`pwd`/../testing/data

```

 


> [Rust] Tests fail when following instructions in README
> -------------------------------------------------------
>
>                 Key: ARROW-10186
>                 URL: https://issues.apache.org/jira/browse/ARROW-10186
>             Project: Apache Arrow
>          Issue Type: Bug
>          Components: Rust
>            Reporter: Andy Grove
>            Assignee: Andy Grove
>            Priority: Major
>             Fix For: 2.0.0
>
>
> If I follow the instructions from the README and set the test paths as follows, some of the IPC tests fail with "no such file or directory".
> {code:java}
> export PARQUET_TEST_DATA=../cpp/submodules/parquet-testing/data
> export ARROW_TEST_DATA=../testing/data  {code}
> If I change them to relative paths as follows then the tests pass:
> {code:java}
> export PARQUET_TEST_DATA=`pwd`/../cpp/submodules/parquet-testing/data
> export ARROW_TEST_DATA=`pwd`/../testing/data  {code}
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)