Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions projects/openexr/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,6 @@ RUN apt-get update && apt-get install -y make autoconf automake libtool zlib1g-d
RUN git clone --depth 1 https://github.com/AcademySoftwareFoundation/openexr openexr
WORKDIR openexr
COPY *.sh $SRC/

# The below test is failing in the OSS-Fuzz environment. Patch it out for now.
RUN sed -i "s/TEST (testAttrBytes/\/\/TEST (testAttrBytes/g" $SRC/openexr/src/test/OpenEXRCoreTest/main.cpp
3 changes: 0 additions & 3 deletions projects/openexr/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,6 @@

set -x

# The below test is failing in the OSS-Fuzz environment. Patch it out for now.
sed -i "s/TEST (testAttrBytes/\/\/TEST (testAttrBytes/g" $SRC/openexr/src/test/OpenEXRCoreTest/main.cpp

BUILD_DIR=$WORK/_build.oss-fuzz

cmake -S $SRC/openexr -B $BUILD_DIR --preset oss_fuzz
Expand Down
Loading