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

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

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