You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm getting Segmentation fault: 11 and sometimes Bus error: 10 when running grasp on large sets of files. I first noticed the problem working on a proprietary project that I can't share here but I was able to reproduce it by cloning the react repo.
This gets 131643 lines of javascript. The query doesn't seem to matter. All of those grasp commands end with Segmentation fault: 11 every time.
Here's an example with a smaller set of files (but still 29065 lines).
cd packages/react-dom/src/__tests__
# run grasp on 29066 lines in 67 files
grasp with *.js # segfault
# run grasp separately on each file, largest file 2578 lines
ls *.js | xargs -L 1 grasp with # no segfault
# cat the files together and pipe to grasp
cat *.js | grasp with # segfault
The text was updated successfully, but these errors were encountered:
I'm getting
Segmentation fault: 11
and sometimesBus error: 10
when running grasp on large sets of files. I first noticed the problem working on a proprietary project that I can't share here but I was able to reproduce it by cloning the react repo.To reproduce:
This gets 131643 lines of javascript. The query doesn't seem to matter. All of those grasp commands end with
Segmentation fault: 11
every time.Here's an example with a smaller set of files (but still 29065 lines).
The text was updated successfully, but these errors were encountered: