aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/tests/ld_library_path/ld_library_path_test.cpp
blob: 2f19110c6feddd40ea0c75e09c8cc0d7efcba606 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// Copyright Yahoo. 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;
}