You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In windows CI (on appveyor), the test_fcl_simple test has been known to timeout (see reproduced log below).
Generally, the test has issues; it is not a proper test. Here is a list of defects immediately obvious upon initial read (the list is not comprehensive):
It performs test on Eigen types (e.g., Vectorn<S, N> is just an alias for Eigen::Matrix<S, N, 1>, but we test all the matrix operations).
Many of those tests consist simply of dumping values to std::out.
So, while it's not immediately obvious what would be causing the timeouts, it seems safe to say that some clean up is due. The clean up may assist in time out problem (and certainly couldn't hurt).
In windows CI (on appveyor), the
test_fcl_simple
test has been known to timeout (see reproduced log below).Generally, the test has issues; it is not a proper test. Here is a list of defects immediately obvious upon initial read (the list is not comprehensive):
Vectorn<S, N>
is just an alias forEigen::Matrix<S, N, 1>
, but we test all the matrix operations).So, while it's not immediately obvious what would be causing the timeouts, it seems safe to say that some clean up is due. The clean up may assist in time out problem (and certainly couldn't hurt).
The text was updated successfully, but these errors were encountered: