about summary refs log tree commit diff
path: root/tests/lang/eval-okay-replacestrings.exp
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2018-02-19T15·52+0200
committerTuomas Tynkkynen <tuomas@tuxera.com>2018-02-19T21·20+0200
commit4ea9707591beceacf9988b3c185faf50da238403 (patch)
tree638c7c3572b6fd3801191aa318e4a86655071000 /tests/lang/eval-okay-replacestrings.exp
parent1d0e42879fa687a7b6856b1a63070e44bd8ed5c4 (diff)
libexpr: Fix prim_replaceStrings() to work on an empty source string
Otherwise, running e.g.

nix-instantiate --eval -E --strict 'builtins.replaceStrings [""] ["X"] "abc"'

would just hang in an infinite loop.

Found by afl-fuzz.
Diffstat (limited to 'tests/lang/eval-okay-replacestrings.exp')
-rw-r--r--tests/lang/eval-okay-replacestrings.exp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lang/eval-okay-replacestrings.exp b/tests/lang/eval-okay-replacestrings.exp
index a2add1b7b140..590c281ac86d 100644
--- a/tests/lang/eval-okay-replacestrings.exp
+++ b/tests/lang/eval-okay-replacestrings.exp
@@ -1 +1 @@
-[ "faabar" "fbar" "fubar" "faboor" "fubar" ]
+[ "faabar" "fbar" "fubar" "faboor" "fubar" "XaXbXcX" "X" ]