summaryrefslogtreecommitdiffstats
path: root/juniper/src/test/auxTestApp.cpp
blob: 1c85796bb1f60bf74f392e24a201b9b6c482c557 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include "auxTest.h"
#include <vespa/vespalib/testkit/testapp.h>

void Usage(char* s)
{
    fprintf(stderr, "Usage: %s [-d debug_level]\n", s);
}


int main(int argc, char **argv) {
    juniper::TestEnv te(argc, argv, TEST_PATH("../rpclient/testclient.rc").c_str());
    AuxTest pta;
    pta.SetStream(&std::cout);
    pta.Run(argc, argv);
    return pta.Report();
}