Index: tests/OFList/Makefile ================================================================== --- tests/OFList/Makefile +++ tests/OFList/Makefile @@ -3,5 +3,10 @@ include ../../buildsys.mk CPPFLAGS += -I../../src LIBS += -lobjc -L../../src -lobjfw + +all: ${PROG_NOINST} + LD_LIBRARY_PATH=../../src \ + DYLD_LIBRARY_PATH=../../src \ + ./${PROG_NOINST} Index: tests/OFList/OFList.m ================================================================== --- tests/OFList/OFList.m +++ tests/OFList/OFList.m @@ -11,10 +11,12 @@ #import #import "OFString.h" #import "OFList.h" + +/* TODO: Do real checks */ int main() { OFList *list; Index: tests/OFObject/Makefile ================================================================== --- tests/OFObject/Makefile +++ tests/OFObject/Makefile @@ -3,5 +3,10 @@ include ../../buildsys.mk CPPFLAGS += -I../../src LIBS += -lobjc -L../../src -lobjfw + +all: ${PROG_NOINST} + LD_LIBRARY_PATH=../../src \ + DYLD_LIBRARY_PATH=../../src \ + ./${PROG_NOINST} Index: tests/OFString/Makefile ================================================================== --- tests/OFString/Makefile +++ tests/OFString/Makefile @@ -3,5 +3,10 @@ include ../../buildsys.mk CPPFLAGS += -I../../src LIBS += -lobjc -L../../src -lobjfw + +all: ${PROG_NOINST} + LD_LIBRARY_PATH=../../src \ + DYLD_LIBRARY_PATH=../../src \ + ./${PROG_NOINST} Index: tests/OFString/OFString.m ================================================================== --- tests/OFString/OFString.m +++ tests/OFString/OFString.m @@ -11,10 +11,12 @@ #import #import #import "OFString.h" + +/* TODO: Do real checks */ int main() { OFString *s1 = [OFString new: "foo"]; Index: tests/OFWideString/Makefile ================================================================== --- tests/OFWideString/Makefile +++ tests/OFWideString/Makefile @@ -3,5 +3,10 @@ include ../../buildsys.mk CPPFLAGS += -I../../src LIBS += -lobjc -L../../src -lobjfw + +all: ${PROG_NOINST} + LD_LIBRARY_PATH=../../src \ + DYLD_LIBRARY_PATH=../../src \ + ./${PROG_NOINST} Index: tests/OFWideString/OFWideString.m ================================================================== --- tests/OFWideString/OFWideString.m +++ tests/OFWideString/OFWideString.m @@ -11,10 +11,12 @@ #import #import #import "OFWideString.h" + +/* TODO: Do real checks */ int main() { OFWideString *s1 = [OFWideString new: L"foo"];