1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-24 22:11:15 +02:00

Merge pull request #13392 from NixOS/mergify/bp/2.29-maintenance/pr-13348

Make the repl test more robust (backport #13348)
This commit is contained in:
mergify[bot] 2025-06-22 19:41:08 +00:00 committed by GitHub
commit b3b137ec4a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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