/
githubmirror
/
json
Обзор
Документация
Войти
/
githubmirror
/
json
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
tests/thirdparty/Fuzzer/test/fuzzer-jobs.test
29 строк
1 KB
Niels Lohmann
Reorganize directories (#3462)
01 май 2022, 10:41
Не верифицирован
01 май 2022, 10:41
b21c345
Код
Авторство
О чём код?
RUN: rm -rf %tmp RUN: mkdir %tmp && cd %tmp # Create a shared corpus directory RUN: rm -rf FuzzerJobsTestCORPUS RUN: mkdir FuzzerJobsTestCORPUS RUN: rm -f fuzz-{0,1}.log # Start fuzzer and in parallel check that the output files # that should be created exist. RUN: LLVMFuzzer-EmptyTest -max_total_time=4 -jobs=2 -workers=2 FuzzerJobsTestCORPUS > %t-fuzzer-jobs-test.log 2>&1 & export FUZZER_PID=$! # Wait a short while to give time for the child processes # to start fuzzing RUN: sleep 2 # If the instances are running in parallel they should have created their log # files by now. RUN: ls fuzz-0.log RUN: ls fuzz-1.log # Wait for libfuzzer to finish. # This probably isn't portable but we need a way to block until # the fuzzer is done otherwise we might remove the files while # they are being used. RUN: while kill -0 ${FUZZER_PID}; do : ; done RUN: rm -f fuzz-{0,1}.log RUN: rm -rf FuzzerJobsTestCORPUS RUN: FileCheck -input-file=%t-fuzzer-jobs-test.log %s RUN: rm %t-fuzzer-jobs-test.log RUN: cd ../ CHECK-DAG: Job 0 exited with exit code 0 CHECK-DAG: Job 1 exited with exit code 0