mirror of
https://github.com/ceph/ceph
synced 2025-01-30 06:53:38 +00:00
22227cd1c1
From: Yan, Zheng <yan.zheng@intel.com> Simple reproducer for #5453, modified to run for a finite number of iterations. Signed-off-by: Sage Weil <sage@inktank.com>
12 lines
134 B
Makefile
12 lines
134 B
Makefile
CFLAGS = -Wall -Wextra -D_GNU_SOURCE
|
|
|
|
TARGETS = test_o_trunc
|
|
|
|
.c:
|
|
$(CC) $(CFLAGS) $@.c -o $@
|
|
|
|
all: $(TARGETS)
|
|
|
|
clean:
|
|
rm $(TARGETS)
|