Skip to content
Open
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
- name: Run tests
run: |
docker run -w /PI pi bash -c \
'uv run make check -j2 || (find . -name "test-suite.log" | xargs cat)'
'ec=0; uv run make check -j2 || ec=$?; (find . -name "test-suite.log" | xargs cat); exit $ec'
# Comment this out until and unless we make it pass.
# - name: Check style
# run: |
Expand Down
2 changes: 1 addition & 1 deletion proto/tests/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
ACLOCAL_AMFLAGS = ${ACLOCAL_FLAGS} -I m4

# for deprecated Protobuf fields
AM_CXXFLAGS += -Wno-error=deprecated-declarations
AM_CXXFLAGS += -Wno-error=deprecated-declarations -Wno-error=unused-function

# issytem for generated code, to avoid potential warnings
AM_CPPFLAGS = \
Expand Down
2 changes: 1 addition & 1 deletion tests/CLI/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

ACLOCAL_AMFLAGS = ${ACLOCAL_FLAGS} -I m4

AM_TESTS_ENVIRONMENT = export PI_TEST_WITH_VALGRIND=1;
AM_TESTS_ENVIRONMENT = unset PI_TEST_WITH_VALGRIND;

TESTS = \
table_dump.test \
Expand Down
2 changes: 1 addition & 1 deletion third_party/googletest
Submodule googletest updated 365 files