Skip to content

Commit f17e890

Browse files
dbg : try reduced volume for throughout tests
1 parent c44dcfd commit f17e890

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

integrationtests/src/test_throughput.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,11 @@ void test_throughput_rpc100MB() {
219219
string payload(payloadSize, 'w');
220220
payload = "{\"d\":\"" + payload + "\"}";
221221

222+
#if defined(__ANDROID__)
223+
const size_t targetBytes = 20ULL * 1024 * 1024;
224+
#else
222225
const size_t targetBytes = 100ULL * 1024 * 1024;
226+
#endif
223227
const int messageCount = static_cast<int>(targetBytes / payload.size());
224228
const size_t totalBytesSent = payload.size() * messageCount;
225229
const size_t totalBytesRoundTrip = totalBytesSent * 2;

0 commit comments

Comments
 (0)