From 95c579df686f115c0fd3697f2723fa73476c4584 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Tue, 23 Mar 2021 18:50:55 +0300 Subject: Add regex_replace_parse() overloads --- tests/builtin/sed.testscript | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/builtin') diff --git a/tests/builtin/sed.testscript b/tests/builtin/sed.testscript index 7fbc9b2..2ed3088 100644 --- a/tests/builtin/sed.testscript +++ b/tests/builtin/sed.testscript @@ -166,13 +166,13 @@ test.options += -c : unterminated : $* -e 's/foo' 2>>EOE != 0 - sed: unterminated 's' command regex in 's/foo' + sed: invalid 's' command 's/foo': no delimiter after regex EOE : empty : $* -e 's///' 2>>EOE != 0 - sed: empty regex in 's' command in 's///' + sed: invalid 's' command 's///': empty regex EOE : invalid @@ -188,7 +188,7 @@ test.options += -c : unterminated-replacement : $* -e 's/foo/bar' 2>>EOE != 0 - sed: unterminated 's' command replacement in 's/foo/bar' + sed: invalid 's' command 's/foo/bar': no delimiter after replacement EOE : invalid-flags -- cgit v1.1