Skip to content

Commit

Permalink
fix build: adjust tests directory (#7671)
Browse files Browse the repository at this point in the history
In nlohmann/json#3462 we renamed the folder "test" to "tests".
  • Loading branch information
nlohmann authored May 4, 2022
1 parent 2369a6a commit 5a889cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions projects/json/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
#
################################################################################

make FUZZER_ENGINE="$LIB_FUZZING_ENGINE" fuzzers -Ctest
make FUZZER_ENGINE="$LIB_FUZZING_ENGINE" fuzzers -Ctests

FUZZER_FILES=$(find test/ -maxdepth 1 -executable -type f)
FUZZER_FILES=$(find tests/ -maxdepth 1 -executable -type f)
for F in $FUZZER_FILES; do
cp $F $OUT/
FUZZER=$(basename $F .cpp)
Expand Down

0 comments on commit 5a889cf

Please sign in to comment.