summaryrefslogtreecommitdiff
path: root/tests/util/str/oom.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/util/str/oom.c')
-rw-r--r--tests/util/str/oom.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/util/str/oom.c b/tests/util/str/oom.c
index dd3796674..810c1f25a 100644
--- a/tests/util/str/oom.c
+++ b/tests/util/str/oom.c
@@ -1,4 +1,5 @@
#include "clar_libgit2.h"
+#include "clar_libgit2_alloc.h"
/* Override default allocators with ones that will fail predictably. */
@@ -56,3 +57,15 @@ void test_str_oom__grow_by(void)
cl_assert(git_str_grow_by(&buf, 101) == -1);
cl_assert(git_str_oom(&buf));
}
+
+void test_str_oom__allocation_failure(void)
+{
+ git_str buf = GIT_STR_INIT;
+
+ cl_alloc_limit(10);
+
+ cl_git_pass(git_str_puts(&buf, "foobar"));
+ cl_git_fail(git_str_puts(&buf, "foobar"));
+
+ cl_alloc_reset();
+}