Skip to content

Commit

Permalink
Fix issues
Browse files Browse the repository at this point in the history
  • Loading branch information
byrnHDF committed Mar 29, 2024
1 parent 7b90ffe commit 2aa00d0
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 13 deletions.
24 changes: 14 additions & 10 deletions .github/workflows/testxpr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,22 +110,26 @@ jobs:
mkdir "${{ runner.workspace }}/build"
cd "${{ runner.workspace }}/build"
$GITHUB_WORKSPACE/configure \
--enable-build-mode=debug \
--enable-deprecated-symbols \
--with-default-api-version=v16 \
--enable-build-mode=${{ matrix.build_mode }} \
--enable-shared \
--disable-parallel \
--enable-cxx \
--enable-fortran \
--enable-java \
--enable-mirror-vfd \
--enable-direct-vfd \
--enable-ros3-vfd \
--disable-cxx \
--disable-fortran \
--disable-java \
--with-szlib=yes
if: ${{ matrix.build_sys == 'Autotools' }}

- name: Autotools Build
shell: bash
run: make -j3
run: |
make -j3
working-directory: ${{ runner.workspace }}/build
if: ${{ matrix.build_sys == 'Autotools' }}

- name: Autotools Test
shell: bash
run: |
cd test
make -j3 check
working-directory: ${{ runner.workspace }}/build
if: ${{ matrix.build_sys == 'Autotools' }}
6 changes: 3 additions & 3 deletions test/CMakeTests.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -417,10 +417,10 @@ foreach (h5_test ${H5_TESTS})
endif ()
endforeach ()

set_tests_properties (H5TEST-fheap PROPERTIES TIMEOUT ${CTEST_VERY_LONG_TIMEOUT})
set_tests_properties (H5TESTXPR-fheap PROPERTIES TIMEOUT ${CTEST_VERY_LONG_TIMEOUT})
set_tests_properties (H5TEST-big PROPERTIES TIMEOUT ${CTEST_VERY_LONG_TIMEOUT})
set_tests_properties (H5TEST-btree2 PROPERTIES TIMEOUT ${CTEST_VERY_LONG_TIMEOUT})
set_tests_properties (H5TEST-objcopy PROPERTIES TIMEOUT ${CTEST_VERY_LONG_TIMEOUT})
set_tests_properties (H5TESTXPR-btree2 PROPERTIES TIMEOUT ${CTEST_VERY_LONG_TIMEOUT})
set_tests_properties (H5TESTXPR-objcopy PROPERTIES TIMEOUT ${CTEST_VERY_LONG_TIMEOUT})

#-- Adding test for cache
if (NOT CYGWIN)
Expand Down

0 comments on commit 2aa00d0

Please sign in to comment.