Bump to 1.14.1
[platform/upstream/augeas.git] / lenses / tests / test_ldso.aug
1 (*
2 Module: Test_Ldso
3   Provides unit tests and examples for the <Ldso> lens.
4 *)
5
6 module Test_Ldso =
7
8 (* Variable: conf *)
9 let conf = "include /etc/ld.so.conf.d/*.conf
10
11 # libc default configuration
12 /usr/local/lib
13
14 hwcap 1 nosegneg
15 "
16
17 (* Test: Ldso.lns *)
18 test Ldso.lns get conf =
19    { "include" = "/etc/ld.so.conf.d/*.conf" }
20    { }
21    { "#comment" = "libc default configuration" }
22    { "path" = "/usr/local/lib" }
23    { }
24    { "hwcap"
25      { "bit" = "1" }
26      { "name" = "nosegneg" } }