mirror of
https://github.com/fastfloat/fast_float.git
synced 2026-02-09 11:16:45 +08:00
Merge pull request #162 from biojppm/fix/testexes
Fix compile warning: implicit type conversion
This commit is contained in:
commit
02a61971f8
2
.github/workflows/ubuntu20.yml
vendored
2
.github/workflows/ubuntu20.yml
vendored
@ -4,7 +4,7 @@ on: [push, pull_request]
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
ubuntu-build:
|
ubuntu-build:
|
||||||
runs-on: ubuntu-20.04 , arch: -DCMAKE_CXX_FLAGS="-m32"} # default=gcc9
|
runs-on: ubuntu-20.04
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- name: Use cmake
|
- name: Use cmake
|
||||||
|
|||||||
21
.github/workflows/vs17-arm-ci.yml
vendored
21
.github/workflows/vs17-arm-ci.yml
vendored
@ -4,18 +4,27 @@ on: [push, pull_request]
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
ci:
|
ci:
|
||||||
name: windows-vs17
|
name: vs17/${{matrix.arch}}/${{matrix.cfg}}
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- {arch: ARM}
|
- {gen: Visual Studio 17 2022, arch: ARM, cfg: Release}
|
||||||
- {arch: ARM64}
|
- {gen: Visual Studio 17 2022, arch: ARM, cfg: Debug}
|
||||||
|
- {gen: Visual Studio 17 2022, arch: ARM64, cfg: Release}
|
||||||
|
- {gen: Visual Studio 17 2022, arch: ARM64, cfg: Debug}
|
||||||
steps:
|
steps:
|
||||||
- name: checkout
|
- name: checkout
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
- name: Use cmake
|
- name: configure
|
||||||
run: |
|
run: |
|
||||||
cmake -A ${{ matrix.arch }} -DCMAKE_CROSSCOMPILING=1 -DFASTFLOAT_TEST=ON -B build &&
|
cmake -S . -B build -G "${{matrix.gen}}" -A ${{matrix.arch}} -DCMAKE_CROSSCOMPILING=1 -DFASTFLOAT_TEST=ON
|
||||||
cmake --build build --verbose
|
- name: build
|
||||||
|
run: |
|
||||||
|
cmake --build build --verbose --config ${{matrix.cfg}} --parallel
|
||||||
|
# disabled because it requires a toolchain
|
||||||
|
#- name: test
|
||||||
|
# run: |
|
||||||
|
# cd build &&
|
||||||
|
# ctest --output-on-failure -C ${{matrix.cfg}}
|
||||||
|
|||||||
40
.github/workflows/vs17-ci.yml
vendored
40
.github/workflows/vs17-ci.yml
vendored
@ -4,26 +4,40 @@ on: [push, pull_request]
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
ci:
|
ci:
|
||||||
name: windows-vs17
|
name: vs17/${{matrix.arch}}/${{matrix.cfg}}
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- {gen: Visual Studio 17 2022, arch: Win32}
|
- {gen: Visual Studio 17 2022, arch: Win32, cfg: Release}
|
||||||
- {gen: Visual Studio 17 2022, arch: x64}
|
- {gen: Visual Studio 17 2022, arch: Win32, cfg: Debug}
|
||||||
|
- {gen: Visual Studio 17 2022, arch: x64, cfg: Release}
|
||||||
|
- {gen: Visual Studio 17 2022, arch: x64, cfg: Debug}
|
||||||
steps:
|
steps:
|
||||||
- name: checkout
|
- name: checkout
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
- name: Use cmake
|
- name: configure
|
||||||
|
run: |
|
||||||
|
cmake -S . -B build -G "${{matrix.gen}}" -A ${{matrix.arch}} -DFASTFLOAT_TEST=ON -DCMAKE_INSTALL_PREFIX:PATH=destination
|
||||||
|
- name: build
|
||||||
|
run: |
|
||||||
|
cmake --build build --verbose --config ${{matrix.cfg}} --parallel
|
||||||
|
- name: test
|
||||||
run: |
|
run: |
|
||||||
mkdir build &&
|
|
||||||
cd build &&
|
cd build &&
|
||||||
cmake ${{matrix.cxx}} ${{matrix.arch}} -DFASTFLOAT_TEST=ON -DCMAKE_INSTALL_PREFIX:PATH=destination .. &&
|
ctest --output-on-failure -C ${{matrix.cfg}}
|
||||||
cmake --build . --verbose &&
|
- name: install
|
||||||
ctest --output-on-failure &&
|
run: |
|
||||||
cmake --install . &&
|
cd build &&
|
||||||
cd ../tests/installation_tests/find &&
|
cmake --install .
|
||||||
mkdir build && cd build && cmake -DCMAKE_INSTALL_PREFIX:PATH=../../../build/destination .. && cmake --build . --verbose
|
- name: test install (find)
|
||||||
cd ../../issue72_installation &&
|
run: |
|
||||||
mkdir build && cd build && cmake -DCMAKE_INSTALL_PREFIX:PATH=../../../build/destination .. && cmake --build . --verbose
|
cd tests/installation_tests/find &&
|
||||||
|
cmake -S . -B build -G "${{matrix.gen}}" -A ${{matrix.arch}} -DCMAKE_INSTALL_PREFIX:PATH=../../../build/destination &&
|
||||||
|
cmake --build build --verbose --config ${{matrix.cfg}} --parallel
|
||||||
|
- name: test install (issue 72)
|
||||||
|
run: |
|
||||||
|
cd tests/installation_tests/issue72_installation &&
|
||||||
|
cmake -S . -B build -G "${{matrix.gen}}" -A ${{matrix.arch}} -DCMAKE_INSTALL_PREFIX:PATH=../../../build/destination &&
|
||||||
|
cmake --build build --verbose --config ${{matrix.cfg}} --parallel
|
||||||
|
|||||||
15
.github/workflows/vs17-clang-ci.yml
vendored
15
.github/workflows/vs17-clang-ci.yml
vendored
@ -4,24 +4,25 @@ on: [push, pull_request]
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
ci:
|
ci:
|
||||||
name: windows-vs17
|
name: vs17/${{matrix.arch}}/${{matrix.cfg}}
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- {gen: Visual Studio 17 2022, arch: Win32}
|
- {gen: Visual Studio 17 2022, arch: Win32, cfg: Release}
|
||||||
- {gen: Visual Studio 17 2022, arch: x64}
|
- {gen: Visual Studio 17 2022, arch: Win32, cfg: Debug}
|
||||||
|
- {gen: Visual Studio 17 2022, arch: x64, cfg: Release}
|
||||||
|
- {gen: Visual Studio 17 2022, arch: x64, cfg: Debug}
|
||||||
steps:
|
steps:
|
||||||
- name: checkout
|
- name: checkout
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
- name: Configure
|
- name: Configure
|
||||||
run: |
|
run: |
|
||||||
mkdir build
|
cmake -S . -B build -G "${{matrix.gen}}" -A ${{matrix.arch}} -T ClangCL -DFASTFLOAT_TEST=ON
|
||||||
cd build && cmake -G "${{matrix.gen}}" -A ${{matrix.arch}} -T ClangCL -DFASTFLOAT_TEST=ON ..
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: cmake --build build --config Release --parallel
|
run: cmake --build build --config ${{matrix.cfg}} --parallel --verbose
|
||||||
- name: Run basic tests
|
- name: Run basic tests
|
||||||
run: |
|
run: |
|
||||||
cd build
|
cd build
|
||||||
ctest -C Release --output-on-failure -R basictest
|
ctest -C ${{matrix.cfg}} --output-on-failure -R basictest
|
||||||
|
|||||||
21
.github/workflows/vs17-cxx20.yml
vendored
21
.github/workflows/vs17-cxx20.yml
vendored
@ -4,21 +4,26 @@ on: [push, pull_request]
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
ci:
|
ci:
|
||||||
name: windows-vs17
|
name: vs17/${{matrix.arch}}/${{matrix.cfg}}
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- {gen: Visual Studio 17 2022, arch: Win32}
|
- {gen: Visual Studio 17 2022, arch: Win32, cfg: Release}
|
||||||
- {gen: Visual Studio 17 2022, arch: x64}
|
- {gen: Visual Studio 17 2022, arch: Win32, cfg: Debug}
|
||||||
|
- {gen: Visual Studio 17 2022, arch: x64, cfg: Release}
|
||||||
|
- {gen: Visual Studio 17 2022, arch: x64, cfg: Debug}
|
||||||
steps:
|
steps:
|
||||||
- name: checkout
|
- name: checkout
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
- name: Use cmake
|
- name: configure
|
||||||
|
run: |
|
||||||
|
cmake -S . -B build -G "${{matrix.gen}}" -A ${{matrix.arch}} -DCMAKE_CXX_STANDARD=20 -DFASTFLOAT_TEST=ON -DCMAKE_INSTALL_PREFIX:PATH=destination ..
|
||||||
|
- name: build
|
||||||
|
run: |
|
||||||
|
cmake --build build --verbose --config ${{matrix.cfg}} --parallel
|
||||||
|
- name: test
|
||||||
run: |
|
run: |
|
||||||
mkdir build &&
|
|
||||||
cd build &&
|
cd build &&
|
||||||
cmake ${{matrix.cxx}} ${{matrix.arch}} -DCMAKE_CXX_STANDARD=20 -DFASTFLOAT_TEST=ON -DCMAKE_INSTALL_PREFIX:PATH=destination .. &&
|
ctest --output-on-failure -C ${{matrix.cfg}}
|
||||||
cmake --build . --verbose &&
|
|
||||||
ctest --output-on-failure
|
|
||||||
|
|||||||
@ -218,8 +218,8 @@ constexpr static int32_t invalid_am_bias = -0x8000;
|
|||||||
constexpr static double powers_of_ten_double[] = {
|
constexpr static double powers_of_ten_double[] = {
|
||||||
1e0, 1e1, 1e2, 1e3, 1e4, 1e5, 1e6, 1e7, 1e8, 1e9, 1e10, 1e11,
|
1e0, 1e1, 1e2, 1e3, 1e4, 1e5, 1e6, 1e7, 1e8, 1e9, 1e10, 1e11,
|
||||||
1e12, 1e13, 1e14, 1e15, 1e16, 1e17, 1e18, 1e19, 1e20, 1e21, 1e22};
|
1e12, 1e13, 1e14, 1e15, 1e16, 1e17, 1e18, 1e19, 1e20, 1e21, 1e22};
|
||||||
constexpr static float powers_of_ten_float[] = {1e0, 1e1, 1e2, 1e3, 1e4, 1e5,
|
constexpr static float powers_of_ten_float[] = {1e0f, 1e1f, 1e2f, 1e3f, 1e4f, 1e5f,
|
||||||
1e6, 1e7, 1e8, 1e9, 1e10};
|
1e6f, 1e7f, 1e8f, 1e9f, 1e10f};
|
||||||
// used for max_mantissa_double and max_mantissa_float
|
// used for max_mantissa_double and max_mantissa_float
|
||||||
constexpr uint64_t constant_55555 = 5 * 5 * 5 * 5 * 5;
|
constexpr uint64_t constant_55555 = 5 * 5 * 5 * 5 * 5;
|
||||||
// Largest integer value v so that (5**index * v) <= 1<<53.
|
// Largest integer value v so that (5**index * v) <= 1<<53.
|
||||||
|
|||||||
@ -38,7 +38,11 @@ add_library(supplemental-data INTERFACE)
|
|||||||
target_compile_definitions(supplemental-data INTERFACE SUPPLEMENTAL_TEST_DATA_DIR="${supplemental_test_files_BINARY_DIR}/data")
|
target_compile_definitions(supplemental-data INTERFACE SUPPLEMENTAL_TEST_DATA_DIR="${supplemental_test_files_BINARY_DIR}/data")
|
||||||
function(fast_float_add_cpp_test TEST_NAME)
|
function(fast_float_add_cpp_test TEST_NAME)
|
||||||
add_executable(${TEST_NAME} ${TEST_NAME}.cpp)
|
add_executable(${TEST_NAME} ${TEST_NAME}.cpp)
|
||||||
add_test(${TEST_NAME} ${TEST_NAME})
|
if(CMAKE_CROSSCOMPILING)
|
||||||
|
set(ccemulator ${CMAKE_CROSSCOMPILING_EMULATOR})
|
||||||
|
endif()
|
||||||
|
add_test(NAME ${TEST_NAME}
|
||||||
|
COMMAND ${ccemulator} $<TARGET_FILE:${TEST_NAME}>)
|
||||||
if(CMAKE_CXX_COMPILER_ID MATCHES "MSVC")
|
if(CMAKE_CXX_COMPILER_ID MATCHES "MSVC")
|
||||||
target_compile_options(${TEST_NAME} PUBLIC /EHsc)
|
target_compile_options(${TEST_NAME} PUBLIC /EHsc)
|
||||||
endif()
|
endif()
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user