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

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDmitrijs Goloscapovs <dmitrijs.goloscapovs@zabbix.com>2021-04-19 17:29:54 +0300
committerDmitrijs Goloscapovs <dmitrijs.goloscapovs@zabbix.com>2021-04-19 17:29:54 +0300
commit3a5262f0c7f2ec996a401a571480415d3e938485 (patch)
tree66bce89c2f553dba1245f8b84d688685d02ea18d /tests
parenta13b139c31feba2503dcad8b2c7e8164578f3c08 (diff)
........S. [ZBXNEXT-6544,ZBXNEXT-6545] fixed binary op nan check order
Diffstat (limited to 'tests')
-rw-r--r--tests/libs/zbxeval/zbx_eval_execute.yaml14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/libs/zbxeval/zbx_eval_execute.yaml b/tests/libs/zbxeval/zbx_eval_execute.yaml
index 4565d2cc8bb..14ea3c47612 100644
--- a/tests/libs/zbxeval/zbx_eval_execute.yaml
+++ b/tests/libs/zbxeval/zbx_eval_execute.yaml
@@ -1434,4 +1434,18 @@ in:
expression: 'rand(1)'
out:
result: FAIL
+---
+test case: Expression 'power(10,400)'
+in:
+ rules: [ZBX_EVAL_PARSE_FUNCTION,ZBX_EVAL_PARSE_GROUP,ZBX_EVAL_PARSE_VAR]
+ expression: 'power(10,400)'
+out:
+ result: FAIL
+---
+test case: Expression 'power(10,300)*power(10,300)'
+in:
+ rules: [ZBX_EVAL_PARSE_FUNCTION,ZBX_EVAL_PARSE_GROUP,ZBX_EVAL_PARSE_VAR]
+ expression: 'power(10,300)*power(10,300)'
+out:
+ result: FAIL
...