aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2023-01-26 21:51:05 +0100
committerMattias Andrée <maandree@kth.se>2023-01-26 21:51:05 +0100
commitf4c11821dd1b41785d55023ea4828bb4b3a8adde (patch)
treec457430723f60044c2cd6e8e6f5632f88320b1d4
parentTest libglitter_per_channel_desaturate_{double,float} (diff)
downloadlibglitter-f4c11821dd1b41785d55023ea4828bb4b3a8adde.tar.gz
libglitter-f4c11821dd1b41785d55023ea4828bb4b3a8adde.tar.bz2
libglitter-f4c11821dd1b41785d55023ea4828bb4b3a8adde.tar.xz
m
Signed-off-by: Mattias Andrée <maandree@kth.se>
-rw-r--r--Makefile2
-rw-r--r--libglitter_update_render_context.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index e989388..98fe38a 100644
--- a/Makefile
+++ b/Makefile
@@ -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 */
}