summaryrefslogtreecommitdiff
path: root/test/meson.build
blob: 0c7d830d56a11dcf31b20d0d177114f76bf387f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
test_copy = executable ('test-copy',
                        ['test-copy.c',
                         'test.c',
                         'test.h'],
                        dependencies: libnautilus_dep)

test_nautilus_search_engine = executable ('test-nautilus-search-engine',
                                          'test-nautilus-search-engine.c',
                                          dependencies: libnautilus_dep)

test_nautilus_directory_async = executable ('test-nautilus-directory-async',
                                            'test-nautilus-directory-async.c',
                                            dependencies: libnautilus_dep)

test_file_utilities_get_common_filename_prefix = executable ('test-file-utilities-get-common-filename-prefix',
                                                             'test-file-utilities-get-common-filename-prefix.c',
                                                             dependencies: libnautilus_dep)

test_eel_string_rtrim_punctuation = executable ('test-eel-string-rtrim-punctuation',
                                                'test-eel-string-rtrim-punctuation.c',
                                                dependencies: libnautilus_dep)

test_eel_string_get_common_prefix = executable ('test-eel-string-get-common-prefix',
                                                'test-eel-string-get-common-prefix.c',
                                                dependencies: libnautilus_dep)

test ('test-nautilus-search-engine', test_nautilus_search_engine)
test ('test-nautilus-directory-async', test_nautilus_directory_async)
test ('test-file-utilities-get-common-filename-prefix', test_file_utilities_get_common_filename_prefix)
test ('test-eel-string-rtrim-punctuation', test_eel_string_rtrim_punctuation)
test ('test-eel-string-get-common-prefix', test_eel_string_get_common_prefix)