]> git.proxmox.com Git - ceph.git/blame - ceph/src/zstd/tests/regression/result.c
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / zstd / tests / regression / result.c
CommitLineData
9f95a23c 1/*
f67539c2 2 * Copyright (c) 2016-2020, Facebook, Inc.
9f95a23c
TL
3 * All rights reserved.
4 *
5 * This source code is licensed under both the BSD-style license (found in the
6 * LICENSE file in the root directory of this source tree) and the GPLv2 (found
7 * in the COPYING file in the root directory of this source tree).
8 * You may select, at your option, one of the above-listed licenses.
9 */
10
11#include "result.h"
12
13char const* result_get_error_string(result_t result) {
14 switch (result_get_error(result)) {
15 case result_error_ok:
16 return "okay";
17 case result_error_skip:
18 return "skip";
19 case result_error_system_error:
20 return "system error";
21 case result_error_compression_error:
22 return "compression error";
23 case result_error_decompression_error:
24 return "decompression error";
25 case result_error_round_trip_error:
26 return "round trip error";
27 }
28}