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

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVicent Marti <tanoku@gmail.com>2013-03-26 00:39:11 +0400
committerVicent Marti <tanoku@gmail.com>2013-03-26 00:39:11 +0400
commit13640d1bb8376e3f07f66498a5b9bdde9ff3d7d6 (patch)
tree72b2030e9bf518a2d58513283457ffa8793aebce /tests-clar/core
parent1f10747854f04d0ff0e582682613a7cc8a3bcbc8 (diff)
oid: Do not parse OIDs longer than 40
Diffstat (limited to 'tests-clar/core')
-rw-r--r--tests-clar/core/oid.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests-clar/core/oid.c b/tests-clar/core/oid.c
index cd88b4e7c..08791cce6 100644
--- a/tests-clar/core/oid.c
+++ b/tests-clar/core/oid.c
@@ -11,7 +11,7 @@ void test_core_oid__initialize(void)
{
cl_git_pass(git_oid_fromstr(&id, str_oid));
cl_git_pass(git_oid_fromstrp(&idp, str_oid_p));
- cl_git_pass(git_oid_fromstrp(&idm, str_oid_m));
+ cl_git_fail(git_oid_fromstrp(&idm, str_oid_m));
}
void test_core_oid__streq(void)
@@ -27,6 +27,4 @@ void test_core_oid__streq(void)
cl_assert(git_oid_streq(&idp, "deadbeef") == -1);
cl_assert(git_oid_streq(&idp, "I'm not an oid.... :)") == -1);
-
- cl_assert(git_oid_cmp(&id, &idm) == 0);
}