summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorVicent Martí <tanoku@gmail.com>2012-01-04 22:40:59 +0100
committerVicent Martí <tanoku@gmail.com>2012-01-04 22:43:11 +0100
commitf2114d0a35b95efef294f7527dfd64fbef61d993 (patch)
treeccb5ed2313c8d660cefb3730cd9ca279361ff927 /tests
parentb0df89d90b4c2aee6e7083031a93667ff9c85ab3 (diff)
parente2580375dc76f46dce9963225449fcc872e86b0b (diff)
downloadlibgit2-f2114d0a35b95efef294f7527dfd64fbef61d993.tar.gz
Merge remote-tracking branch 'nulltoken/topix/path_fromurl' into development
Conflicts: tests-clay/clay.h tests-clay/clay_main.c
Diffstat (limited to 'tests')
-rw-r--r--tests/t01-rawobj.c15
1 files changed, 2 insertions, 13 deletions
diff --git a/tests/t01-rawobj.c b/tests/t01-rawobj.c
index 8b05f3394..7b9ca1ee1 100644
--- a/tests/t01-rawobj.c
+++ b/tests/t01-rawobj.c
@@ -52,17 +52,6 @@ BEGIN_TEST(oid2, "fail when parsing an invalid string as oid")
must_fail(git_oid_fromstr(&out, "moo"));
END_TEST
-static int from_hex(unsigned int i)
-{
- if (i >= '0' && i <= '9')
- return i - '0';
- if (i >= 'a' && i <= 'f')
- return 10 + (i - 'a');
- if (i >= 'A' && i <= 'F')
- return 10 + (i - 'A');
- return -1;
-}
-
BEGIN_TEST(oid3, "find all invalid characters when parsing an oid")
git_oid out;
unsigned char exp[] = {
@@ -77,8 +66,8 @@ BEGIN_TEST(oid3, "find all invalid characters when parsing an oid")
for (i = 0; i < 256; i++) {
in[38] = (char)i;
- if (from_hex(i) >= 0) {
- exp[19] = (unsigned char)(from_hex(i) << 4);
+ if (git__fromhex(i) >= 0) {
+ exp[19] = (unsigned char)(git__fromhex(i) << 4);
must_pass(git_oid_fromstr(&out, in));
must_be_true(memcmp(out.id, exp, sizeof(out.id)) == 0);
} else {