bin/oss-fuzz-build.sh |    4 ++++
 1 file changed, 4 insertions(+)

New commits:
commit b793a22aba36f77085ca699966bf9472a7342173
Author:     Caolán McNamara <caol...@redhat.com>
AuthorDate: Sat Aug 7 21:33:48 2021 +0100
Commit:     Caolán McNamara <caol...@redhat.com>
CommitDate: Sat Aug 7 22:34:54 2021 +0200

    log when fuzzing build starts and ends
    
    Change-Id: Id5db6c6dc799c03013576e0d041ab180ea4ac77f
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/120168
    Tested-by: Caolán McNamara <caol...@redhat.com>
    Reviewed-by: Caolán McNamara <caol...@redhat.com>

diff --git a/bin/oss-fuzz-build.sh b/bin/oss-fuzz-build.sh
index f5fa83cab88b..e4b4b7eed625 100755
--- a/bin/oss-fuzz-build.sh
+++ b/bin/oss-fuzz-build.sh
@@ -5,6 +5,8 @@ if [ -z "${OUT}" ] || [ -z "${SRC}" ] || [ -z "${WORK}" ]; then
     exit 1
 fi
 
+echo start at `date`
+
 #shuffle CXXFLAGS -stdlib=libc++ arg into CXX as well because we use
 #the CXX as the linker and need to pass -stdlib=libc++ to build
 export CXX="$CXX -stdlib=libc++ 
-fsanitize-blacklist=$SRC/libreoffice/bin/sanitize-excludelist.txt"
@@ -55,3 +57,5 @@ done
 cp $SRC/*.dict $OUT
 #options files
 cp $SRC/libreoffice/vcl/workben/*.options $OUT
+
+echo end at `date`

Reply via email to