source: trunk/third/gnome-vfs/test/Makefile.am @ 17128

Revision 17128, 3.4 KB checked in by ghudson, 23 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r17127, which included commits to RCS files with non-trunk default branches.
RevLine 
[17127]1NULL =
[15496]2
3INCLUDES =                                      \
[15594]4        -I$(top_srcdir)                         \
[15496]5        -I$(top_srcdir)/intl                    \
6        -I$(top_builddir)/intl                  \
7        -I$(top_srcdir)/libgnomevfs             \
8        $(OAF_CFLAGS)                           \
[17127]9        $(VFS_GNOMEUI_CFLAGS)                   \
10        $(VFS_CFLAGS) $(WERROR)                 \
11        -DMODULES_PATH=\"$(libdir)/vfs/modules\"
[15496]12
13noinst_PROGRAMS =                               \
[17127]14        test-async                              \
[15496]15        test-async-cancel                       \
[17127]16        test-async-directory                    \
17        test-channel                            \
[15496]18        test-directory                          \
19        test-directory-visit                    \
[17127]20        test-dirop                              \
[15496]21        test-escape                             \
22        test-find-directory                     \
23        test-info                               \
24        test-mime                               \
25        test-mime-handlers                      \
26        test-mime-handlers-set                  \
[17127]27        test-mime-info                          \
[15496]28        test-seek                               \
[17127]29        test-shell                              \
[15496]30        test-symlinks                           \
[17127]31        test-ssl                                \
[15496]32        test-sync                               \
33        test-sync-create                        \
[17127]34        test-sync-write                         \
[15496]35        test-unlink                             \
[17127]36        test-uri                                \
37        test-xfer                               \
38        test-callback                           \
39        test-module-selftest                    \
40        $(NULL)
[15496]41
42test_files=             \
43        test.input      \
44        test.cmds       \
45        test.output
46
47if HAVE_LIBEFS
48auto_tests=auto-test
49else
50auto_tests=
51endif
52
[17127]53# Set up the environment so the tests can find the back end and modules
54TESTS_ENVIRONMENT = LD_LIBRARY_PATH=$(top_builddir)/libgnomevfs-pthread/.libs/ GNOME_VFS_MODULE_PATH=$(top_builddir)/modules/.libs GNOME_VFS_MODULE_CONFIG_PATH=$(top_srcdir)/modules
[15496]55TESTS = test-async-cancel test-escape test-uri $(auto_tests)
56
57libraries =                                             \
58        $(top_builddir)/libgnomevfs/libgnomevfs.la      \
[17127]59        $(VFS_GNOMEGNORBA_LIBS)                         \
[15496]60        $(GCONF_LIBS)                                   \
61        $(LIBEFS_LIBS)
62
[17127]63test_async_SOURCES = test-async.c
64test_async_LDADD = $(libraries)
[15496]65
[17127]66test_async_directory_SOURCES = test-async-directory.c
67test_async_directory_LDADD = $(libraries)
[15496]68
[17127]69test_channel_SOURCES = test-channel.c
70test_channel_LDADD = $(libraries)
[15496]71
72test_seek_SOURCES = test-seek.c
73test_seek_LDADD = $(libraries)
74
75test_shell_SOURCES = test-shell.c
76test_shell_LDADD = $(libraries)
77
78test_info_SOURCES = test-info.c
79test_info_LDADD = $(libraries)
80
81test_mime_SOURCES = test-mime.c
82test_mime_LDADD = $(libraries)
83
84test_mime_handlers_SOURCES = test-mime-handlers.c
85test_mime_handlers_LDADD = $(libraries)
86
87test_mime_handlers_set_SOURCES = test-mime-handlers-set.c
88test_mime_handlers_set_LDADD = $(libraries)
89
90test_xfer_SOURCES = test-xfer.c
91test_xfer_LDADD = $(libraries)
92
93test_directory_SOURCES = test-directory.c
94test_directory_LDADD = $(libraries)
95
96test_directory_visit_SOURCES = test-directory-visit.c
97test_directory_visit_LDADD = $(libraries)
98
99test_symlinks_SOURCES = test-symlinks.c
100test_symlinks_LDADD = $(libraries)
101
[17127]102test_ssl_SOURCES = test-ssl.c
103test_ssl_LDADD = $(libraries)
104
[15496]105test_sync_SOURCES = test-sync.c
106test_sync_LDADD = $(libraries)
107
108test_sync_write_SOURCES = test-sync-write.c
109test_sync_write_LDADD = $(libraries)
110
111test_sync_create_SOURCES = test-sync-create.c
112test_sync_create_LDADD = $(libraries)
113
114test_async_cancel_SOURCES = test-async-cancel.c
115test_async_cancel_LDADD = $(libraries)
116
117test_escape_SOURCES = test-escape.c
118test_escape_LDADD = $(libraries)
119
120test_uri_SOURCES = test-uri.c
121test_uri_LDADD = $(libraries)
122
123test_unlink_SOURCES = test-unlink.c
124test_unlink_LDADD = $(libraries)
125
126test_dirop_SOURCES = test-dirop.c
127test_dirop_LDADD = $(libraries)
128
129test_find_directory_SOURCES = test-find-directory.c
130test_find_directory_LDADD = $(libraries)
131
132test_mime_info_SOURCES = test-mime-info.c
133test_mime_info_LDADD = $(libraries)
134
[17127]135test_callback_SOURCES = test-callback.c
136test_callback_LDADD = $(libraries)
[15496]137
[17127]138test_module_selftest_SOURCES = test-module-selftest.c
139test_module_selftest_LDADD = $(libraries)
140
[15496]141EXTRA_DIST =                                    \
142        $(test_files)                           \
143        vfs-run.in
Note: See TracBrowser for help on using the repository browser.