Merge branch '2.3' into 2.4
This commit is contained in:
28
system-test/different_size_binlog.cpp
Normal file
28
system-test/different_size_binlog.cpp
Normal file
@ -0,0 +1,28 @@
|
||||
/**
|
||||
* @file different_size_binlog.cpp Tries INSERTs with size close to 0x0ffffff * N
|
||||
* - configure binlog
|
||||
* - executes inserts with size: from 0x0ffffff * N - X up to 0x0ffffff * N - X
|
||||
* (N = 3, X = 50 or 20 for 'soke' test)
|
||||
* - check if Maxscale is still alive
|
||||
*/
|
||||
|
||||
|
||||
#include <iostream>
|
||||
#include <maxtest/different_size.hh>
|
||||
#include <maxtest/testconnections.hh>
|
||||
|
||||
using namespace std;
|
||||
|
||||
int main(int argc, char* argv[])
|
||||
{
|
||||
TestConnections* Test = new TestConnections(argc, argv);
|
||||
|
||||
Test->set_timeout(300);
|
||||
Test->start_binlog(0);
|
||||
different_packet_size(Test, true);
|
||||
|
||||
Test->check_maxscale_processes(0, 1);
|
||||
int rval = Test->global_result;
|
||||
delete Test;
|
||||
return rval;
|
||||
}
|
Reference in New Issue
Block a user