ports/x11/elementary-terminal/files/patch-src_meson.build
2024-05-13 15:09:14 +00:00

37 lines
885 B
Text

--- src/meson.build.orig 2023-04-04 17:39:57 UTC
+++ src/meson.build
@@ -37,34 +37,3 @@ executable(
dependencies: terminal_deps,
install : true
)
-
-# tests
-
-test_env = [
- 'G_TEST_SRCDIR=' + meson.current_source_dir(),
- 'G_TEST_BUILDDIR=' + meson.current_build_dir(),
- 'GSETTINGS_SCHEMA_DIR=' + meson.project_build_root() / 'data',
- 'GSETTINGS_BACKEND=memory',
- 'GIO_USE_VFS=local'
-]
-
-add_test_setup(
- 'headless',
- exe_wrapper: [ find_program('xvfb-run'), '-a', '-s', '-screen 0 1024x768x24 -noreset' ],
- is_default: true
-)
-
-app_test = executable(
- meson.project_name() + '.tests.application',
- terminal_sources + 'tests/Application.vala',
- dependencies: terminal_deps,
- vala_args: [ '--define', 'TESTS']
-)
-
-test(
- 'Application',
- app_test,
- env: test_env,
- protocol: 'tap',
- depends: test_schemas
-)