summaryrefslogtreecommitdiffstats
path: root/searchlib/src/tests/ld-library-path/ld-library-path.cpp
blob: 5d21e86d7a6a980348b8202fbef8d4f28b4e9cdd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include <vespa/log/log.h>
LOG_SETUP("");

int
main(int, char **)
{
    LOG(info, "LD_LIBRARY_PATH='%s'", getenv("LD_LIBRARY_PATH"));
    return 0;
}