-
We are using AWS C++ SDK 1.9.160. It builds fine before but recently we need to rebuild it on Linux (Ubuntu 20.04) we get one unit test error in HttpClientTest.TestRandomURLMultiThreaded.
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
You can disable unit tests by adding this cmake command: I would always recommend using the latest version of this sdk, and upgrading it might resolve the unit tests failing. |
Beta Was this translation helpful? Give feedback.
-
I had this issue and worked around it by increasing the timeout value here:
The default of 5 secs might not be enough for some systems. |
Beta Was this translation helpful? Give feedback.
-
Hello! Reopening this discussion to make it searchable. |
Beta Was this translation helpful? Give feedback.
You can disable unit tests by adding this cmake command:
-DENABLE_TESTING=OFF
I would always recommend using the latest version of this sdk, and upgrading it might resolve the unit tests failing.