Adds new tests for foldl', intersectAttrs as well as fills in missing .exp files. New test cases we don't pass: - fromTOML timestamp capabilities - path antiquotation - replaceStrings is lazier on C++ Nix master The C++ Nix revision used is 7066d21a0ddb421967980094222c4bc1f5a0f45a. Change-Id: Ic619c96e2d41e6c5ea6fa93f9402b12e564af3c5 Reviewed-on: https://cl.tvl.fyi/c/depot/+/8778 Reviewed-by: tazjin <tazjin@tvl.su> Autosubmit: sterni <sternenseemann@systemli.org> Tested-by: BuildkiteCI
5 lines
190 B
Nix
5 lines
190 B
Nix
# Tests that the result of applying op is forced even if the value is never used
|
|
builtins.foldl'
|
|
(_: f: f null)
|
|
null
|
|
[ (_: throw "Not the final value, but is still forced!") (_: 23) ]
|