]> Git Repo - linux.git/blob - tools/testing/selftests/bpf/test_maps.h
scsi: zfcp: Trace when request remove fails after qdio send fails
[linux.git] / tools / testing / selftests / bpf / test_maps.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _TEST_MAPS_H
3 #define _TEST_MAPS_H
4
5 #include <stdio.h>
6 #include <stdlib.h>
7
8 #define CHECK(condition, tag, format...) ({                             \
9         int __ret = !!(condition);                                      \
10         if (__ret) {                                                    \
11                 printf("%s(%d):FAIL:%s ", __func__, __LINE__, tag);     \
12                 printf(format);                                         \
13                 exit(-1);                                               \
14         }                                                               \
15 })
16
17 extern int skips;
18
19 #endif
This page took 0.039446 seconds and 4 git commands to generate.