File tree Expand file tree Collapse file tree 3 files changed +20
-3
lines changed
Expand file tree Collapse file tree 3 files changed +20
-3
lines changed Original file line number Diff line number Diff line change @@ -18,4 +18,4 @@ FROM gcr.io/oss-fuzz-base/base-builder
1818RUN apt-get update && apt-get install -y cmake make
1919RUN git clone --depth 1 https://github.com/Blosc/c-blosc.git c-blosc
2020WORKDIR c-blosc
21- COPY build.sh $SRC/
21+ COPY run_tests.sh build.sh $SRC/
Original file line number Diff line number Diff line change 1717
1818# Build project
1919cmake . -DCMAKE_C_FLAGS=" $CFLAGS " -DCMAKE_CXX_FLAGS=" $CXXFLAGS " \
20- -DBUILD_FUZZERS=ON -DBUILD_TESTS=OFF -DBUILD_BENCHMARKS=OFF \
21- -DBUILD_STATIC=ON -DBUILD_SHARED=OFF
20+ -DBUILD_FUZZERS=ON -DBUILD_TESTS=ON -DBUILD_BENCHMARKS=OFF \
21+ -DBUILD_STATIC=ON -DBUILD_SHARED=ON
2222make clean
2323make -j$( nproc)
2424
Original file line number Diff line number Diff line change 1+ #! /bin/bash -eu
2+ # Copyright 2025 Google LLC.
3+ #
4+ # Licensed under the Apache License, Version 2.0 (the "License");
5+ # you may not use this file except in compliance with the License.
6+ # You may obtain a copy of the License at
7+ #
8+ # http://www.apache.org/licenses/LICENSE-2.0
9+ #
10+ # Unless required by applicable law or agreed to in writing, software
11+ # distributed under the License is distributed on an "AS IS" BASIS,
12+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+ # See the License for the specific language governing permissions and
14+ # limitations under the License.
15+ # ###############################################################################
16+
17+ ctest --output-on-failure -E " test_api|test_forksafe"
You can’t perform that action at this time.
0 commit comments