aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2018-12-25 20:50:41 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2018-12-25 20:50:41 +0100
commit8fac1c77401478855fd0ac1a7fa64c371bd735cb (patch)
treeb5b49ac0dc1164052048c1c7481e23c91936ec29
parenta2e62e3e505aad4af81018f385d86d35e6485641 (diff)
downloadbusybox-w32-8fac1c77401478855fd0ac1a7fa64c371bd735cb.tar.gz
busybox-w32-8fac1c77401478855fd0ac1a7fa64c371bd735cb.tar.bz2
busybox-w32-8fac1c77401478855fd0ac1a7fa64c371bd735cb.zip
dc: add two tests
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rwxr-xr-xtestsuite/dc.tests10
1 files changed, 10 insertions, 0 deletions
diff --git a/testsuite/dc.tests b/testsuite/dc.tests
index cb2dcbc23..2756608f7 100755
--- a/testsuite/dc.tests
+++ b/testsuite/dc.tests
@@ -56,6 +56,16 @@ testing "dc '>aeb' (conditional execute string with else)" \
56 "2\n9\n" \ 56 "2\n9\n" \
57 "" "[1p]sa [2p]sb 2 1>aeb\n9p" 57 "" "[1p]sa [2p]sb 2 1>aeb\n9p"
58 58
59testing "dc space can be a register" \
60 "dc" \
61 "2\n9\n" \
62 "" "[2p]s \n[3p]\nl x\n9p"
63
64testing "dc newline can be a register" \
65 "dc" \
66 "2\n9\n" \
67 "" "[2p]s\n[3p]l\nx\n9p"
68
59for f in dc_*.dc; do 69for f in dc_*.dc; do
60 r="`basename "$f" .dc`_results.txt" 70 r="`basename "$f" .dc`_results.txt"
61 test -f "$r" || continue 71 test -f "$r" || continue