hiroyuki-sato commented on issue #51095:
URL: https://github.com/apache/arrow/issues/51095#issuecomment-5495191304
@pitrou Thank you for your comment.
In the latest `run-test.sh` at commit
a769c291e01093b73d03a075179cf7a09bf92ad8, this is the only place where `find`
is used:
```bash
grep find cpp/build-support/run-test.sh
COREFILES=$(find /tmp -maxdepth 1 -type f -name "core.${FILENAME}*" -exec
basename {} \;)
```
Since the error below appears to come from the `find` command, I asked
because I still haven't been able to identify exactly where the error is coming
from.
```text
find: ‘/tmp/buffered-test-0gzee19x’: Aucun fichier ou dossier de ce nom
```
For example, this is the kind of error you get when running a command like
this:
```bash
find /tmp/buffered-test-0gzee19x -type d -print
```
```text
find: /tmp/buffered-test-0gzee19x: No such file or directory
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]