about summary refs log tree commit diff
path: root/Test
diff options
context:
space:
mode:
authorDaniel Shahaf <d.s@daniel.shahaf.name>2021-03-07 16:58:03 +0000
committerDaniel Shahaf <d.s@daniel.shahaf.name>2021-03-07 21:58:12 +0000
commit6a2a8acf09bc39795f18cc60e90a0d4427d36edd (patch)
tree7dfdfd6d432332e9ca78fe345b480f393217ed91 /Test
parent5ede2c55f144593c16498c3131a76e188114a9c6 (diff)
downloadzsh-6a2a8acf09bc39795f18cc60e90a0d4427d36edd.tar.gz
zsh-6a2a8acf09bc39795f18cc60e90a0d4427d36edd.tar.xz
zsh-6a2a8acf09bc39795f18cc60e90a0d4427d36edd.zip
48147/0001: tests: Add a unit test for zmathfunc and a regression test for workers/48146 affecting it.
Diffstat (limited to 'Test')
-rw-r--r--Test/Z02zmathfunc.ztst23
1 files changed, 23 insertions, 0 deletions
diff --git a/Test/Z02zmathfunc.ztst b/Test/Z02zmathfunc.ztst
new file mode 100644
index 000000000..94bc59576
--- /dev/null
+++ b/Test/Z02zmathfunc.ztst
@@ -0,0 +1,23 @@
+%prep
+  autoload -Uz zmathfunc && zmathfunc
+
+%test
+
+  echo $(( min(42, 43) )) $(( max(42, 43) )) $(( sum(42, 43) ))
+  echo $(( min(42) )) $(( max(42) )) $(( sum(42) ))
+  echo $(( sum() ))
+0:basic functionality test
+>42 43 85
+>42 42 42
+>0
+
+
+  (set -e; echo $(( min(0,   42) )))
+  (set -e; echo $(( max(0,  -42) )))
+  (set -e; echo $(( sum(42, -42) )))
+-f:regression test for ERR_EXIT 
+>0
+>0
+>0
+
+%clean