1
0
mirror of https://gitlab.gnome.org/GNOME/nautilus synced 2024-07-04 17:30:47 +00:00
nautilus/test/meson.build
António Fernandes 83c2c6fdda test/interactive: Drop obsolete test
Originally introduced by 469047a2a5

It's been disabled because it relied on gtk_main* API, which is gone
in GTK4, but even after porting to GMainLoop API, it fails to work
because operations invoke GApplication inhibition.

In other words: I'm confident this test program has been broken for
years without anyone realizing it.

We already have automatic tests for copy operations. Manual testing
can be done with the nautilus application itself with debug messages
enabled.

So, let's just drop the broken obsolete test code.
2022-09-01 22:20:55 +00:00

22 lines
549 B
Meson

# When adding new tests, it is useful to set some environment variables.
# You can do it like so:
#
# test(
# name,
# executable,
# env: [
# test_env,
# 'G_TEST_BUILDDIR=@0@'.format(meson.current_build_dir()),
# 'G_TEST_SRCDIR=@0@'.format(meson.current_source_dir())
# ]
# )
#
# G_TEST_BUILDDIR and G_TEST_SRCDIR cannot be preset, since
# the test sources are scattered.
test_env = [
'GSETTINGS_SCHEMA_DIR=@0@'.format(join_paths(meson.project_build_root(), 'data')),
'RUNNING_TESTS=@0@'.format('TRUE')
]
subdir('automated')