Skip to content

Commit

Permalink
Merge pull request #2010 from symengine/bjodah-patch-1
Browse files Browse the repository at this point in the history
Update test_lambda_double.cpp
  • Loading branch information
bjodah committed Mar 21, 2024
2 parents b3b9b43 + ab799da commit 450a027
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bin/test_travis.sh
Expand Up @@ -19,7 +19,7 @@ if [[ "${WITH_SANITIZE}" != "" ]]; then
export CC=clang-15
export CXX=clang++-15
which $CXX
cmake_line="-DCMAKE_CXX_COMPILER_LAUNCHER=ccache"
cmake_line="-DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DCMAKE_POSITION_INDEPENDENT_CODE=ON"
LIBCXX_15_MSAN_ROOT=/opt/libcxx-15-msan
# export PATH="/usr/lib/llvm-15/bin:$PATH" # llvm-config
curl -Ls https://github.com/llvm/llvm-project/archive/llvmorg-${LLVM_ORG_VER}.tar.gz | tar xz -C /tmp
Expand Down
2 changes: 1 addition & 1 deletion symengine/tests/eval/test_lambda_double.cpp
Expand Up @@ -281,7 +281,7 @@ TEST_CASE("Evaluate functions", "[lambda_gamma]")
v.init({}, *Nan);
REQUIRE(std::isnan(v.call({})));
v.init({}, *Inf);
std::isinf(v.call({}));
REQUIRE(std::isinf(v.call({})));
v.init({}, *NegInf);
REQUIRE(std::isinf(v.call({})));
}
Expand Down

0 comments on commit 450a027

Please sign in to comment.