Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed test
  • Loading branch information
kornelski committed Jul 2, 2017
1 parent 0cef666 commit 276f735
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -38,7 +38,7 @@ $(BIN): $(OBJS) $(STATICLIBDEPS)
$(CC) $(OBJS) $(CFLAGS) $(LDFLAGS) -o $@

$(TESTBIN): test/test.o $(STATICLIBDEPS)
$(CC) $(OBJS) $(CFLAGS) $(LDFLAGS) -o $@
$(CC) test/test.o $(CFLAGS) $(LDFLAGS) -o $@

test: $(BIN) $(TESTBIN)
LD_LIBRARY_PATH='$(LIQSRCDIR)' ./test/test.sh ./test $(BIN) $(TESTBIN)
Expand Down
2 changes: 1 addition & 1 deletion test/test.c
@@ -1,6 +1,6 @@
#undef NDEBUG
#include <assert.h>
#include "../lib/libimagequant.h"
#include "libimagequant.h"
#include <stdio.h>
#include <string.h>

Expand Down

0 comments on commit 276f735

Please sign in to comment.