refs/reftable: print errors on compaction failure
[alt-git.git] / reftable / test_framework.c
blob4066924eee45dc6b4fe5b353f7fe54c9dc9f7d7e
1 /*
2 Copyright 2020 Google LLC
4 Use of this source code is governed by a BSD-style
5 license that can be found in the LICENSE file or at
6 https://developers.google.com/open-source/licenses/bsd
7 */
9 #include "system.h"
10 #include "test_framework.h"
13 void set_test_hash(uint8_t *p, int i)
15 memset(p, (uint8_t)i, hash_size(GIT_SHA1_FORMAT_ID));
18 ssize_t strbuf_add_void(void *b, const void *data, size_t sz)
20 strbuf_add(b, data, sz);
21 return sz;
24 int noop_flush(void *arg)
26 return 0;