diff options
author | Mattias Andrée <maandree@kth.se> | 2023-01-26 21:51:05 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2023-01-26 21:51:05 +0100 |
commit | f4c11821dd1b41785d55023ea4828bb4b3a8adde (patch) | |
tree | c457430723f60044c2cd6e8e6f5632f88320b1d4 | |
parent | Test libglitter_per_channel_desaturate_{double,float} (diff) | |
download | libglitter-f4c11821dd1b41785d55023ea4828bb4b3a8adde.tar.gz libglitter-f4c11821dd1b41785d55023ea4828bb4b3a8adde.tar.bz2 libglitter-f4c11821dd1b41785d55023ea4828bb4b3a8adde.tar.xz |
m
Signed-off-by: Mattias Andrée <maandree@kth.se>
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | libglitter_update_render_context.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -90,7 +90,7 @@ libglitter.$(LIBEXT): $(LOBJ) $(CC) $(LIBFLAGS) -o $@ $(LOBJ) $(LDFLAGS) check: $(TESTS) - @for t in $(TESTS); do printf './%s\n' $$t; ./$$t || exit 1; done + @for t in $(TESTS); do printf './%s\n' $$t; $(CHECK_PREFIX) ./$$t || exit 1; done install: libglitter.a libglitter.$(LIBEXT) mkdir -p -- "$(DESTDIR)$(PREFIX)/lib" diff --git a/libglitter_update_render_context.c b/libglitter_update_render_context.c index 39e5146..f3d424c 100644 --- a/libglitter_update_render_context.c +++ b/libglitter_update_render_context.c @@ -35,7 +35,7 @@ libglitter_update_render_context(LIBGLITTER_RENDER_CONTEXT *this, size_t rowsize int main(void) { - return 0; /* TODO add test */ + return 0; /* tested via libglitter_create_render_context */ } |