source: trunk/test/Makefile.am @ 1861

Last change on this file since 1861 was 1861, checked in by Peter, 14 years ago

refs #269. Adding some simple tests. Also adding svm parameters. I chose not to bundle the params into a struct becuuse I don't see the point without deprecating a number (4) of functions in SVM or adding redundancy in interface. The downside of this is that it will be harder to maintain, but... the SVM part seems pretty stable.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.6 KB
Line 
1## Process this file with automake to produce Makefile.in
2##
3## $Id: Makefile.am 1861 2009-03-12 12:05:46Z peter $
4
5# Copyright (C) 2003 Daniel Dalevi, Jari Häkkinen
6# Copyright (C) 2004 Jari Häkkinen, Peter Johansson, Cecilia Ritz
7# Copyright (C) 2005 Jari Häkkinen, Peter Johansson
8# Copyright (C) 2006, 2007, 2008 Jari Häkkinen, Peter Johansson, Markus Ringnér
9# Copyright (C) 2009 Peter Johansson
10#
11# This file is part of the yat library, http://dev.thep.lu.se/yat
12#
13# The yat library is free software; you can redistribute it
14# and/or modify it under the terms of the GNU General Public License as
15# published by the Free Software Foundation; either version 3 of the
16# License, or (at your option) any later version.
17#
18# The yat library is distributed in the hope that it will be useful,
19# but WITHOUT ANY WARRANTY; without even the implied warranty of
20# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
21# General Public License for more details.
22#
23# You should have received a copy of the GNU General Public License
24# along with yat. If not, see <http://www.gnu.org/licenses/>.
25
26SUBDIRS = data
27
28noinst_HEADERS = Suite.h
29
30check_LTLIBRARIES = libyattest.la
31
32check_SCRIPTS = common_defs.sh
33
34.PHONY: $(INSTALLCHECK_TARGETS) FORCE
35
36clean-local:; rm -rf yathello *.sh.dir
37
38FORCE:
39
40yathello: create_yathello.sh $(top_srcdir)/m4/yat.m4
41  ./create_yathello.sh
42
43# testing autoconf macro YAT_CHECK_YAT on an installed yat (the bindir
44# argument requires some care).
45yat_check_yat_test: yathello FORCE
46  cd yathello && autoreconf -sivf && \
47  ./configure --with-yat=$(bindir) && $(MAKE) check
48
49check_PROGRAMS = alignment_test averager_test \
50  commandline_test \
51  consensus_inputranker_test data_lookup_1d_test  \
52  data_weight_test data_weight_proxy_test distance_test \
53  ensemble_test feature_selection_test fileutil_test \
54  fisher_test index_test inputranker_test interpolation_test \
55  iterator_test kernel_lookup_test kernel_test \
56  knn_test kolmogorov_smirnov_test large_file_test matrix_lookup_test \
57  matrix_lookup_weighted_test matrix_test \
58  matrix_weighted_test nbc_test \
59  ncc_test nni_test normalization_test pca_test \
60  range_test regression_test rnd_test roc_test \
61  score_test  smart_ptr_test    \
62  statistics_test subset_generator_test svd_test svm_test \
63  svm_multi_class_test target_test  \
64  ttest_test \
65  utility_test vector_test version_test view_test
66
67TESTS = $(check_PROGRAMS)
68
69# tests not passing through yet
70XFAIL_TESTS =
71
72TESTS += documentation_test.sh
73
74DISTRIBUTED_TESTS = yat_cpp_add_flag_test.sh \
75yat_cxx_add_flag_test.sh \
76yat_ld_add_flag_test.sh \
77yat_m4_test.sh \
78yat_m4_test2.sh
79
80TESTS += $(DISTRIBUTED_TESTS)
81EXTRA_DIST = $(DISTRIBUTED_TESTS)
82
83LDADD = $(top_builddir)/$(YAT_LIB_LOCATION)/libyat.la libyattest.la
84
85libyattest_la_SOURCES = Suite.cc
86
87alignment_test_SOURCES = alignment_test.cc
88averager_test_SOURCES = averager_test.cc
89commandline_test_SOURCES = commandline_test.cc
90consensus_inputranker_test_SOURCES = consensus_inputranker_test.cc
91data_lookup_1d_test_SOURCES = data_lookup_1d_test.cc
92data_weight_test_SOURCES = data_weight_test.cc
93data_weight_proxy_test_SOURCES = data_weight_proxy_test.cc
94distance_test_SOURCES = distance_test.cc
95ensemble_test_SOURCES = ensemble_test.cc
96feature_selection_test_SOURCES = feature_selection_test.cc
97fileutil_test_SOURCES = fileutil_test.cc
98fisher_test_SOURCES = fisher_test.cc
99index_test_SOURCES = index_test.cc
100inputranker_test_SOURCES = inputranker_test.cc
101interpolation_test_SOURCES = interpolation_test.cc
102iterator_test_SOURCES = iterator_test.cc
103kernel_test_SOURCES = kernel_test.cc
104kernel_lookup_test_SOURCES = kernel_lookup_test.cc
105knn_test_SOURCES = knn_test.cc 
106kolmogorov_smirnov_test_SOURCES = kolmogorov_smirnov_test.cc
107large_file_test_SOURCES = large_file_test.cc
108matrix_lookup_test_SOURCES = matrix_lookup_test.cc
109matrix_lookup_weighted_test_SOURCES = matrix_lookup_weighted_test.cc
110matrix_test_SOURCES = matrix_test.cc
111matrix_weighted_test_SOURCES = matrix_weighted_test.cc
112nbc_test_SOURCES = nbc_test.cc
113ncc_test_SOURCES = ncc_test.cc
114nni_test_SOURCES = nni_test.cc
115normalization_test_SOURCES = normalization_test.cc
116pca_test_SOURCES = pca_test.cc
117range_test_SOURCES = range_test.cc
118regression_test_SOURCES = regression_test.cc
119rnd_test_SOURCES = rnd_test.cc
120roc_test_SOURCES = roc_test.cc
121score_test_SOURCES = score_test.cc
122smart_ptr_test_SOURCES = smart_ptr_test.cc
123statistics_test_SOURCES = statistics_test.cc
124subset_generator_test_SOURCES = subset_generator_test.cc
125svd_test_SOURCES = svd_test.cc
126svm_test_SOURCES = svm_test.cc
127svm_multi_class_test_SOURCES = svm_multi_class_test.cc
128target_test_SOURCES = target_test.cc
129ttest_test_SOURCES = ttest_test.cc
130utility_test_SOURCES = utility_test.cc
131vector_test_SOURCES = vector_test.cc
132version_test_SOURCES = version_test.cc
133view_test_SOURCES = view_test.cc
Note: See TracBrowser for help on using the repository browser.