syncthingtray/testhelper/helper.cpp
Martchus 1ed4905139 tests: Allow specifying timeout factor
The timeout factor is read from environment
variable SYNCTHING_TEST_TIMEOUT_FACTOR
2017-07-14 16:23:32 +02:00

12 lines
223 B
C++

#include "./helper.h"
namespace TestUtilities {
/*!
* \brief Specifies the factor for multiplying all timeouts passed to functions declared in helper.h.
*
* The default factor is 1.0.
*/
double timeoutFactor = 1.0;
}