source: trunk/third/gnome-vfs2/test/Makefile.am @ 20794

Revision 20794, 4.0 KB checked in by ghudson, 20 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r20793, which included commits to RCS files with non-trunk default branches.
Line 
1NULL =
2
3INCLUDES =                                      \
4        -I$(top_srcdir)                         \
5        -I$(top_builddir)                       \
6        -I$(top_builddir)/libgnomevfs           \
7        $(TEST_CFLAGS)                          \
8        $(VFS_CFLAGS)                           \
9        -DG_DISABLE_DEPRECATED                  \
10        -DMODULES_PATH=\"$(libdir)/vfs/modules\"
11
12noinst_PROGRAMS =                               \
13        test-async                              \
14        test-async-cancel                       \
15        test-async-directory                    \
16        test-channel                            \
17        test-directory                          \
18        test-directory-visit                    \
19        test-dirop                              \
20        test-dns-sd                             \
21        test-escape                             \
22        test-find-directory                     \
23        test-info                               \
24        test-mime                               \
25        test-mime-handlers                      \
26        test-mime-info-cache                    \
27        test-mime-handlers-set                  \
28        test-monitor                            \
29        test-performance                        \
30        test-seek                               \
31        test-shell                              \
32        test-symlinks                           \
33        test-ssl                                \
34        test-sync                               \
35        test-sync-create                        \
36        test-sync-write                         \
37        test-unlink                             \
38        test-uri                                \
39        test-volumes                            \
40        test-xfer                               \
41        test-callback                           \
42        test-module-selftest                    \
43        test-queue                              \
44        $(NULL)
45
46test_files=             \
47        test.input      \
48        test.cmds       \
49        test.output
50
51# Set up the environment so the tests can find the modules
52TESTS_ENVIRONMENT = GNOME_VFS_MODULE_PATH=$(top_builddir)/modules/.libs \
53                GNOME_VFS_MODULE_CONFIG_PATH=$(top_srcdir)/modules \
54                GNOME_VFS_TEST_CONFIG_FILE=$(top_srcdir)/test/queue-test-config.xml \
55                SRCDIR=$(srcdir)
56TESTS = test-async-cancel test-escape test-uri test-queue $(srcdir)/auto-test
57
58libraries =                                             \
59        $(top_builddir)/libgnomevfs/libgnomevfs-2.la    \
60        $(TEST_LIBS)                                    \
61        $(POPT_LIBS)                                    \
62        $(LIBEFS_LIBS)
63
64test_async_SOURCES = test-async.c
65test_async_LDADD = $(libraries)
66
67test_performance_SOURCES = test-performance.c
68test_performance_LDADD = $(libraries)
69
70#test_resolv_SOURCES = test-resolv.c
71#test_resolv_LDADD = $(libraries)
72
73#test_subdir_SOURCES = test-subdir.c
74#test_subdir_LDADD = $(libraries)
75
76test_async_directory_SOURCES = test-async-directory.c
77test_async_directory_LDADD = $(libraries)
78
79test_channel_SOURCES = test-channel.c
80test_channel_LDADD = $(libraries)
81
82test_seek_SOURCES = test-seek.c
83test_seek_LDADD = $(libraries)
84
85test_shell_SOURCES = test-shell.c
86test_shell_LDADD = $(libraries)
87
88test_info_SOURCES = test-info.c
89test_info_LDADD = $(libraries)
90
91test_mime_SOURCES = test-mime.c
92test_mime_LDADD = $(libraries)
93
94test_mime_handlers_SOURCES = test-mime-handlers.c
95test_mime_handlers_LDADD = $(libraries)
96
97test_mime_handlers_set_SOURCES = test-mime-handlers-set.c
98test_mime_handlers_set_LDADD = $(libraries)
99
100test_mime_info_cache_SOURCES = test-mime-info-cache.c
101test_mime_info_cache_LDADD = $(libraries)
102
103test_xfer_SOURCES = test-xfer.c
104test_xfer_LDADD = $(libraries)
105
106test_directory_SOURCES = test-directory.c
107test_directory_LDADD = $(libraries)
108
109test_directory_visit_SOURCES = test-directory-visit.c
110test_directory_visit_LDADD = $(libraries)
111
112test_symlinks_SOURCES = test-symlinks.c
113test_symlinks_LDADD = $(libraries)
114
115test_ssl_SOURCES = test-ssl.c
116test_ssl_LDADD = $(libraries)
117
118test_sync_SOURCES = test-sync.c
119test_sync_LDADD = $(libraries)
120
121test_sync_write_SOURCES = test-sync-write.c
122test_sync_write_LDADD = $(libraries)
123
124test_sync_create_SOURCES = test-sync-create.c
125test_sync_create_LDADD = $(libraries)
126
127test_async_cancel_SOURCES = test-async-cancel.c
128test_async_cancel_LDADD = $(libraries)
129
130test_escape_SOURCES = test-escape.c
131test_escape_LDADD = $(libraries)
132
133test_uri_SOURCES = test-uri.c
134test_uri_LDADD = $(libraries)
135
136test_volumes_SOURCES = test-volumes.c
137test_volumes_LDADD = $(libraries)
138
139test_unlink_SOURCES = test-unlink.c
140test_unlink_LDADD = $(libraries)
141
142test_dirop_SOURCES = test-dirop.c
143test_dirop_LDADD = $(libraries)
144
145test_dns_sd_SOURCES = test-dns-sd.c
146test_dns_sd_LDADD = $(libraries)
147
148test_find_directory_SOURCES = test-find-directory.c
149test_find_directory_LDADD = $(libraries)
150
151test_monitor_SOURCES = test-monitor.c
152test_monitor_LDADD = $(libraries)
153
154# test_metadata_SOURCES = test-metadata.c
155# test_metadata_LDADD = $(libraries)
156
157test_callback_SOURCES = test-callback.c
158test_callback_LDADD = $(libraries)
159
160test_module_selftest_SOURCES = test-module-selftest.c
161test_module_selftest_LDADD = $(libraries)
162
163test_queue_SOURCES = test-queue.c
164test_queue_LDADD = $(libraries)
165
166EXTRA_DIST =                                    \
167        $(test_files)                           \
168        auto-test                               \
169        vfs-run.in
Note: See TracBrowser for help on using the repository browser.