diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2024-09-17 17:29:58 +0200 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2024-09-17 17:29:58 +0200 |
commit | 638f63ce8af4c398aab30a8bf71d30369d229c83 (patch) | |
tree | be297320b402c131cd8512b501c04a337259fd32 /tests | |
parent | 59b5711a15a924f8ba0e233bce9de1091364c203 (diff) | |
download | sciteco-638f63ce8af4c398aab30a8bf71d30369d229c83.tar.gz |
fixed searches on completely new and empty documents
This was throwing glib assertions.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/testsuite.at | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/testsuite.at b/tests/testsuite.at index 189fbc1..e33a2c4 100644 --- a/tests/testsuite.at +++ b/tests/testsuite.at @@ -135,6 +135,10 @@ AT_CHECK([$SCITECO -e "2147483647@S/foo/"], 0, ignore, ignore) AT_CHECK([$SCITECO -e "-2147483648@S/foo/"], 1, ignore, ignore) AT_CLEANUP +AT_SETUP([Search on new empty document]) +AT_CHECK([$SCITECO -e ":@S/foo/\"S(0/0)'"], 0, ignore, ignore) +AT_CLEANUP + AT_SETUP([Memory limiting during spawning]) # This might result in an OOM if memory limiting is not working AT_CHECK([$SCITECO -e "50*1000*1000,2EJ 0,128ED @EC'dd if=/dev/zero'"], 1, ignore, ignore) |