diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2024-02-07 21:23:48 +0300 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2024-02-08 04:45:54 +0300 |
commit | 83398b3fb5674441ebe73d0f6e1226cb3c700aa9 (patch) | |
tree | d54f10031d287dc2a2d3b710eef1c2299235b69b /tests | |
parent | 21c5be3706f70d573f8d0195760846fce46f6807 (diff) | |
download | sciteco-83398b3fb5674441ebe73d0f6e1226cb3c700aa9.tar.gz |
fixed expressions like `1,(2)` or `(1),(2)`: they are reported as two numbers now
* Instead of TECO_OP_NEW, there should perhaps simply be a flag of whether `,` was used.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/testsuite.at | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/testsuite.at b/tests/testsuite.at index 3a8bed8..3965730 100644 --- a/tests/testsuite.at +++ b/tests/testsuite.at @@ -25,6 +25,7 @@ AT_CHECK([$SCITECO -e "2%a,%a - 3\"N(0/0)'"], 0, ignore, ignore) # c) The empty "list" element is equivalent to 0, so # "1,,2" is equivalent to "1,0,2" and (1,) to (1,0). AT_CHECK([$SCITECO -e "(1,) \"~|(0/0)'"], 0, ignore, ignore) +AT_CHECK([$SCITECO -e "1,(2)=="], 0, ignore, ignore) AT_CLEANUP AT_SETUP([Exponentiation]) |