summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorDominik Riebeling <Dominik.Riebeling@gmail.com>2021-12-21 18:34:01 +0100
committerDominik Riebeling <Dominik.Riebeling@gmail.com>2021-12-25 17:47:14 +0100
commit4eb3f05042608aeaf359bcfd177525ed8052d6eb (patch)
tree754949e220c9b7fa60a4796e5bfc3355e3e39ec6 /utils
parentf2798c225ad783afc1e170a393656c1a645e09ab (diff)
downloadrockbox-4eb3f05042608aeaf359bcfd177525ed8052d6eb.tar.gz
rockbox-4eb3f05042608aeaf359bcfd177525ed8052d6eb.zip
rbutil: Increase test timeout value for HttpGet tests.
The test timeout is used to abort the tests if something goes wrong and should not occur during normal test run. On some systems the current value is too small, causing a timeout and thus test failure before HttpGet responds. Increasing the timeout fixes this. Change-Id: Ib61dd97d9f866c03cca9d2f0d7cb151f7076410d
Diffstat (limited to 'utils')
-rw-r--r--utils/rbutilqt/test/test-httpget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/rbutilqt/test/test-httpget.cpp b/utils/rbutilqt/test/test-httpget.cpp
index 144adc62df..62aace0352 100644
--- a/utils/rbutilqt/test/test-httpget.cpp
+++ b/utils/rbutilqt/test/test-httpget.cpp
@@ -23,7 +23,7 @@
23#include "httpget.h" 23#include "httpget.h"
24 24
25#define TEST_USER_AGENT "TestAgent/2.3" 25#define TEST_USER_AGENT "TestAgent/2.3"
26#define TEST_HTTP_TIMEOUT 1000 26#define TEST_HTTP_TIMEOUT 10000
27#define TEST_BINARY_BLOB "\x01\x10\x20\x30\x40\x50\x60\x70" \ 27#define TEST_BINARY_BLOB "\x01\x10\x20\x30\x40\x50\x60\x70" \
28 "\x80\x90\xff\xee\xdd\xcc\xbb\xaa" 28 "\x80\x90\xff\xee\xdd\xcc\xbb\xaa"
29 29