Yuxian Chen

Results 8 issues of Yuxian Chen

I am editting beast/test/Jamfile to include a path in Windows network shared folder. The format of the path is special, which starts with two slashes. After executing bjam, I only...

transition

Hi all, I noticed that there are CMakeLists.txt and Jamfile.v2 under compute/test directory. When I tried to use bjam to build, I got errors when running tests. For example, when...

In windows, there is an error when compiling test_command_queue.cpp for mismatch convension. > test_command_queue.cpp:232:11: error: no matching member function for call to 'enqueue_native_kernel' queue.enqueue_native_kernel(&nullary_kernel); ~~~~~~^~~~~~~~~~~~~~~~~~~~~ ../../..\boost/compute/command_queue.hpp:1534:11: note: candidate function not...

rebind in std::allocator is deprecated in C++17 and removed in C++20. See https://en.cppreference.com/w/cpp/memory/allocator. This change makes that the tests that include test_rtree.hpp are failed in C++20 since rebind is used...

tests

Hi, I found that [Test test3_mvov](https://github.com/boostorg/ublas/blob/master/IDEs/qtcreator/test/test3_mvov.pro) failed for map/set iterators incompatible in clang and clang-cl on Windows. Below are the commands that I used. ``` clang test3.cpp -o test3.obj -std=c++17...

Hi, I found that test [placement_new.cpp](https://github.com/boostorg/ublas/tree/master/test/placement_new.cpp) failed in clang on Windows. I got 253 as the return value of the exetuable file after running following compiling command. ``` ksh-3.2$ clang...

I tried to use clang-cl on Windows(VS2019) to run the tests, and found [stream_state_test.cpp](https://github.com/boostorg/iostreams/blob/develop/test/stream_state_test.cpp) failed with the following error message. ``` ksh-3.2$ ./stream_state_test.exe Running 12 test cases... stream_state_test.cpp(89): error: in...

Code to reproduce: > #include #include #include "bugs.hpp" typedef boost::numeric::interval I; static bool test_sqrt(double al, double au) { I a(al, au); I b = square(sqrt(a)); return subset(abs(a), b); } int...