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