summaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorFelipe Sateler <fsateler@gmail.com>2016-06-24 22:14:25 -0400
committerFelipe Sateler <fsateler@gmail.com>2016-06-24 22:36:28 -0400
commitcc8b113e0ba9e8dfbc4159799133a7d32f633109 (patch)
tree1d96e8c3ee484511fa85657b8bb73b81fbe5579e /src/test
parent8537a389b85473d2c609e46b6a869400938bccd2 (diff)
build-sys: Add new libsystemd-shared private library
Link as many binaries as possible with it, to save storage space. Preserve the static libshared and libbasic for use in libraries, nss modules and udev. Libraries need to be static in order to avoid polluting the symbol namespace. Udev needs to be static so downstream can avoid strict version dependencies with the systemd package, and this can complicate upgrade scenarios.
Diffstat (limited to 'src/test')
-rw-r--r--src/test/test-path-util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/test-path-util.c b/src/test/test-path-util.c
index b53324b5e6..6094d4c3e5 100644
--- a/src/test/test-path-util.c
+++ b/src/test/test-path-util.c
@@ -114,7 +114,7 @@ static void test_find_binary(const char *self) {
assert_se(find_binary(self, &p) == 0);
puts(p);
- assert_se(endswith(p, "/test-path-util"));
+ assert_se(endswith(p, "/lt-test-path-util"));
assert_se(path_is_absolute(p));
free(p);