Han-Wen Nienhuys | ef8a6c6 | 2021-10-07 20:25:00 +0000 | [diff] [blame] | 1 | /* |
| 2 | Copyright 2020 Google LLC |
| 3 | |
| 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 | */ |
| 8 | |
| 9 | #include "system.h" |
| 10 | #include "test_framework.h" |
| 11 | |
Han-Wen Nienhuys | ef8a6c6 | 2021-10-07 20:25:00 +0000 | [diff] [blame] | 12 | |
| 13 | void set_test_hash(uint8_t *p, int i) |
| 14 | { |
| 15 | memset(p, (uint8_t)i, hash_size(GIT_SHA1_FORMAT_ID)); |
| 16 | } |
| 17 | |
| 18 | ssize_t strbuf_add_void(void *b, const void *data, size_t sz) |
| 19 | { |
| 20 | strbuf_add(b, data, sz); |
| 21 | return sz; |
| 22 | } |
John Cai | 1df18a1 | 2024-01-23 18:51:10 +0000 | [diff] [blame] | 23 | |
| 24 | int noop_flush(void *arg) |
| 25 | { |
| 26 | return 0; |
| 27 | } |