Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2003-09-16 05:46:36 +0400
committerGlenn L McGrath <bug1@ihug.co.nz>2003-09-16 05:46:36 +0400
commit204ff1cea49c958846cd49175fa9318b81b5756f (patch)
treea64e6ce8f21b19abda79932248d3439ed3e016e5 /testsuite
parent96fd1b98f19cd97a534406554f83ae5cab87b3ac (diff)
Fix a bug that creapt in recently with substitution subprinting, and add
a test for it.
Diffstat (limited to 'testsuite')
-rw-r--r--testsuite/sed/sed-subst-subprint9
1 files changed, 9 insertions, 0 deletions
diff --git a/testsuite/sed/sed-subst-subprint b/testsuite/sed/sed-subst-subprint
new file mode 100644
index 000000000..24f8bad7d
--- /dev/null
+++ b/testsuite/sed/sed-subst-subprint
@@ -0,0 +1,9 @@
+busybox sed 's/foo/bar/p'>output <<EOF
+foo
+bar
+EOF
+cmp -s output - <<EOF
+bar
+bar
+bar
+EOF