diff options
author | sterni <sternenseemann@systemli.org> | 2023-08-05T15·58+0200 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2023-08-11T22·22+0000 |
commit | 8fb4c949dc267050b75b2efbcfdff1ca1b307fc5 (patch) | |
tree | ff41cc6cef0c321a11fd759e4d9e162a81f9ea1a /tvix/eval/src/tests/tvix_tests/eval-okay-builtins-div.exp | |
parent | 81fc87e29ebee143aa27ff6167556db76a803d12 (diff) |
test(tvix/eval): check truncation direction of builtins.div r/6480
builtins.div ought to truncate towards zero so that -(builtins.div a b) == builtins.div (-a) b -(builtins.div a b) == builtins.div a (-b) Change-Id: I8b7c08cd7f4fa8a1363c786d42c8d484f6cd133d Reviewed-on: https://cl.tvl.fyi/c/depot/+/9006 Autosubmit: sterni <sternenseemann@systemli.org> Reviewed-by: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/eval/src/tests/tvix_tests/eval-okay-builtins-div.exp')
-rw-r--r-- | tvix/eval/src/tests/tvix_tests/eval-okay-builtins-div.exp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/eval/src/tests/tvix_tests/eval-okay-builtins-div.exp b/tvix/eval/src/tests/tvix_tests/eval-okay-builtins-div.exp index 73e9bc33b083..44154ba6a6b2 100644 --- a/tvix/eval/src/tests/tvix_tests/eval-okay-builtins-div.exp +++ b/tvix/eval/src/tests/tvix_tests/eval-okay-builtins-div.exp @@ -1 +1 @@ -[ 3 7 0 1 0 0.5 0.5 0.5 42 ] +[ 3 7 0 1 0 0.5 0.5 0.5 42 1 1 -1 -1 -1 1 1 -1 -1 -1 1 1 -1 -1 -1 -74711 -74711 -74711 ] |