0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 13:40:28 +03:00

Merge staging-next into staging

This commit is contained in:
github-actions[bot] 2021-06-03 19:52:05 +00:00 committed by GitHub
commit b511c637c8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
267 changed files with 2610 additions and 1851 deletions

View file

@ -1,6 +1,6 @@
f: {
system ? builtins.currentSystem,
pkgs ? import ../.. { inherit system; config = {}; },
pkgs ? import ../.. { inherit system; },
...
} @ args:

View file

@ -72,10 +72,10 @@ in {
)
with subtest("test a connection"):
client.execute("systemd-run snapclient -h server -p ${toString port}")
client.execute("systemd-run --unit=snapcast-client snapclient -h server -p ${toString port}")
server.wait_until_succeeds(
"journalctl -o cat -u snapserver.service | grep -q 'Hello from'"
)
client.wait_until_succeeds("journalctl -o cat -u run-\* | grep -q ${toString bufferSize}")
client.wait_until_succeeds("journalctl -o cat -u snapcast-client | grep -q 'buffer: ${toString bufferSize}'")
'';
})