]> git.ipfire.org Git - thirdparty/git.git/blame - reftable/test_framework.c
Merge branch 'tz/send-email-helpfix'
[thirdparty/git.git] / reftable / test_framework.c
CommitLineData
ef8a6c62
HWN
1/*
2Copyright 2020 Google LLC
3
4Use of this source code is governed by a BSD-style
5license that can be found in the LICENSE file or at
6https://developers.google.com/open-source/licenses/bsd
7*/
8
9#include "system.h"
10#include "test_framework.h"
11
12#include "basics.h"
13
14void set_test_hash(uint8_t *p, int i)
15{
16 memset(p, (uint8_t)i, hash_size(GIT_SHA1_FORMAT_ID));
17}
18
19ssize_t strbuf_add_void(void *b, const void *data, size_t sz)
20{
21 strbuf_add(b, data, sz);
22 return sz;
23}