Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Fixed linking issue concerning test suites.
Browse files Browse the repository at this point in the history
Fixed linux build (it compiles and runs properly).
  • Loading branch information
mkauppila committed Jul 20, 2011
1 parent 9a121a3 commit 24ca1fd
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 13 deletions.
4 changes: 4 additions & 0 deletions test/test-automation/Makefile.am
Expand Up @@ -14,6 +14,10 @@ libtest_la_SOURCES = SDL_test.c logger_helpers.c plain_logger.c xml_logger.c xml
libtest_la_CLAGS = -fPIC -g
libtest_la_LDFLAGS = `sdl-config --libs`

libtest: libtest.la
echo "Test library compiled."

all-local: install-tests
install: install-tests
install-tests:
$(SHELL) build-scripts/install-tests.sh
Expand Down
2 changes: 1 addition & 1 deletion test/test-automation/configure.ac
Expand Up @@ -44,4 +44,4 @@ echo ""
echo "========================================"
echo ""
echo "./configure ready!"
echo "you're ready to run: 'make && make install'"
echo "you're ready to run: 'make libtest && make'"
4 changes: 2 additions & 2 deletions test/test-automation/testaudio/Makefile.am
@@ -1,4 +1,4 @@
lib_LTLIBRARIES = libtestaudio.la
libtestaudio_la_SOURCES = testaudio.c ../SDL_test.c ../logger_helpers.c ../plain_logger.c ../xml_logger.c ../xml.c
libtestaudio_la_SOURCES = testaudio.c
libtestaudio_la_CLAGS = -fPIC -g
libtestaudio_la_LDFLAGS = `sdl-config --libs`
libtestaudio_la_LDFLAGS = `sdl-config --libs` -I ../.libs/libtest.la
3 changes: 1 addition & 2 deletions test/test-automation/testdummy/Makefile.am
@@ -1,5 +1,4 @@
lib_LTLIBRARIES = libtestdummy.la
libtestdummy_la_SOURCES = testdummy.c
libtestdummy_la_CLAGS = -fPIC -g
libtestdummy_la_LIBADD = ../libtest.la
libtestdummy_la_LDFLAGS = `sdl-config --libs`
libtestdummy_la_LDFLAGS = `sdl-config --libs` -I ../.libs/libtest.la
2 changes: 1 addition & 1 deletion test/test-automation/testdummy/testdummy.c
Expand Up @@ -95,7 +95,7 @@ void
dummycase2(void *arg)
{
char *msg = "eello";
msg[0] = 'H';
//msg[0] = 'H';
AssertTrue(1, "Assert message");
}

Expand Down
4 changes: 2 additions & 2 deletions test/test-automation/testplatform/Makefile.am
@@ -1,4 +1,4 @@
lib_LTLIBRARIES = libtestplatform.la
libtestplatform_la_SOURCES = testplatform.c ../SDL_test.c ../logger_helpers.c ../plain_logger.c ../xml_logger.c ../xml.c
libtestplatform_la_SOURCES = testplatform.c
libtestplatform_la_CLAGS = -fPIC -g
libtestplatform_la_LDFLAGS = `sdl-config --libs`
libtestplatform_la_LDFLAGS = `sdl-config --libs` -I ../.libs/libtest.la
4 changes: 2 additions & 2 deletions test/test-automation/testrect/Makefile.am
@@ -1,4 +1,4 @@
lib_LTLIBRARIES = libtestrect.la
libtestrect_la_SOURCES = testrect.c ../SDL_test.c ../logger_helpers.c ../plain_logger.c ../xml_logger.c ../xml.c
libtestrect_la_SOURCES = testrect.c
libtestrect_la_CLAGS = -fPIC -g
libtestrect_la_LDFLAGS = `sdl-config --libs`
libtestrect_la_LDFLAGS = `sdl-config --libs` -I ../.libs/libtest.la
5 changes: 2 additions & 3 deletions test/test-automation/testsurface/Makefile.am
@@ -1,5 +1,4 @@
lib_LTLIBRARIES = libtestsurface.la
libtestsurface_la_SOURCES = testsurface.c ../SDL_test.c ../logger_helpers.c ../plain_logger.c ../xml_logger.c ../xml.c \
../common/common.c ../common/img_blit.c ../common/img_blitblend.c ../common/img_face.c ../common/img_primitives.c ../common/img_primitivesblend.c
libtestsurface_la_SOURCES = testsurface.c
libtestsurface_la_CLAGS = -fPIC -g
libtestsurface_la_LDFLAGS = `sdl-config --libs`
libtestsurface_la_LDFLAGS = `sdl-config --libs` -I ../.libs/libtest.la

0 comments on commit 24ca1fd

Please sign in to comment.