1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-10 20:46:01 +01:00

Merge pull request #103 from DeterminateSystems/repl-test-robust

Make the repl test more robust
This commit is contained in:
Eelco Dolstra 2025-06-11 17:37:40 +00:00 committed by GitHub
commit a95067d428
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -163,7 +163,8 @@ foo + baz
# - Re-eval it
# - Check that the result has changed
mkfifo repl_fifo
nix repl ./flake < repl_fifo > repl_output 2>&1 &
touch repl_output
nix repl ./flake < repl_fifo >> repl_output 2>&1 &
repl_pid=$!
exec 3>repl_fifo # Open fifo for writing
echo "changingThing" >&3