1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-12-13 23:02:14 +03:00

Added to the unit test

Effectively this is just a test of Config, to make sure it's
doing envvar substitutions & number suffix expansions right.
This commit is contained in:
Patrick LeBlanc
2019-02-21 16:27:22 -06:00
parent 402a49c27a
commit 2619aa8983
2 changed files with 15 additions and 0 deletions

View File

@@ -8,6 +8,10 @@
#include "PingTask.h"
#include "CopyTask.h"
#include "messageFormat.h"
#include "Config.h"
#include "Cache.h"
#include "LocalStorage.h"
#include <iostream>
#include <stdlib.h>
#include <unistd.h>
@@ -470,5 +474,13 @@ int main()
listdirtask();
pingtask();
copytask();
Config *conf = Config::get();
LocalStorage ls;
Cache cache;
return 0;
}