27 lines
742 B
C++
27 lines
742 B
C++
#include <gflags/gflags.h>
|
|
#include <mgclient.hpp>
|
|
|
|
#include "utils/logging.hpp"
|
|
#include "utils/timer.hpp"
|
|
|
|
DEFINE_uint64(bolt_port, 7687, "Bolt port");
|
|
DEFINE_uint64(timeout, 120, "Timeout seconds");
|
|
|
|
int main(int argc, char **argv) {
|
|
google::SetUsageMessage("Memgraph E2E Memory Limit For Global Allocators");
|
|
gflags::ParseCommandLineFlags(&argc, &argv, true);
|
|
logging::RedirectToStderr();
|
|
|
|
mg::Client::Init();
|
|
|
|
auto client =
|
|
mg::Client::Connect({.host = "127.0.0.1", .port = static_cast<uint16_t>(FLAGS_bolt_port), .use_ssl = false});
|
|
if (!client) {
|
|
LOG_FATAL("Failed to connect!");
|
|
}
|
|
|
|
bool result = client->Execute("CALL libglobal_memory_limit.procedure() YIELD *");
|
|
MG_ASSERT(result == false);
|
|
return 0;
|
|
}
|