https://github.com/richfitz/crash
https://github.com/richfitz/crash
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/richfitz/crash
- Owner: richfitz
- Created: 2021-10-27T14:51:05.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-10-27T14:51:11.000Z (over 4 years ago)
- Last Synced: 2025-01-20T22:53:53.215Z (over 1 year ago)
- Language: R
- Size: 1000 Bytes
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# V8 + testthat crash
Setup, run this from within this repository so that the "package" gets mounted into the container:
```
docker pull wch1/r-debug
docker run -v $PWD:/src:ro -it --rm \
--security-opt seccomp=unconfined \
wch1/r-debug
apt-get update && apt-get install -y libv8-dev
RDcsan -e 'install.packages(c("testthat", "V8"))'
RDcsan -e 'testthat::test_local("/src")' # crash :(
```
See https://github.com/jeroen/V8/issues/128 for more information.