~elementary-apps/pantheon-files/trunk

« back to all changes in this revision

Viewing changes to libcore/tests/Makefile.am

  • Committer: xapantu
  • Date: 2011-05-10 07:52:36 UTC
  • Revision ID: xapantu@gmail.com-20110510075236-10km15380510v8m4
Add unit tests for some gof-file functions, basic GOFFile creation are tested, and symlink functions too

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# GLIB - Library of useful C routines
 
2
 
 
3
#GTESTER = gtester                      # for non-GLIB packages
 
4
GTESTER = /usr/bin/gtester              # for the GLIB package
 
5
GTESTER_REPORT = /usr/bin/gtester-report        # for the GLIB package
 
6
 
 
7
check_PROGRAMS = coremarlin_tests
 
8
coremarlin_tests_SOURCES = tests.c \
 
9
    marlincore-tests-gof.c
 
10
 
 
11
coremarlin_tests_LDADD = $(CORE_LIBS) $(top_srcdir)/libcore/libmarlincore.la $(NULL)
 
12
coremarlin_tests_CFLAGS = $(CORE_CFLAGS) -I.. -I$(top_srcdir)/libcore
 
13
TESTS_ENVIRONMENT= $(GTESTER)
 
14
TESTS = coremarlin_tests
 
15