Skip to content

Commit 6eb474b

Browse files
committed
Don't ignore make test errors
1 parent 62d3fa9 commit 6eb474b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ fzytest: fzytest.o match.o choices.o
1717
$(CC) $(CFLAGS) $(CCFLAGS) -o $@ $^
1818

1919
test: fzytest
20-
-$(DEBUGGER) ./fzytest
20+
$(DEBUGGER) ./fzytest
2121

2222
fzy: fzy.o match.o tty.o choices.o
2323
$(CC) $(CFLAGS) $(CCFLAGS) -o $@ $^

fzytest.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ void test_positions_4() {
102102

103103
void test_positions_5() {
104104
size_t positions[3];
105-
match_positions("abc", "a a b c c", positions);
105+
match_positions("abc", "a/a/b/c/c", positions);
106106
assert(positions[0] == 2);
107107
assert(positions[1] == 4);
108108
assert(positions[2] == 6);

0 commit comments

Comments
 (0)