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] [Created] (ARROW-10186) [Rust] Tests fail when following instructions in README

Andy Grove created ARROW-10186:
----------------------------------

             Summary: [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
             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".

```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

```

 



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