Open
Description
I have a cvise setup where the interestingness oracle needs to copy a whole source code directory into the temp dir in order for a binary to be compiled.
cvise was filling my filesystem because it creates these cvise_extra
directories when there's a timeout. And then those directories would get copied into the temp dir each time. Eventually the disk would be filled and cvise would crash in strange ways.
I've worked around this by using rsync to not copy those directories into the cvise temp dirs, like this:
rsync -a --exclude 'cvise_extra_*' ${YKLUA_HOME}/creduce/src .
cp onelua.c src/
cd ./src
make onelua
./onelua -e "_U=true" ${YKLUA_HOME}/tests/events.lua 2>&1 | grep 'trace_builder.rs:389'
But it would be nice if there was a way to disable creation of those directories upon a timeout.
Metadata
Metadata
Assignees
Labels
No labels