Branch: refs/heads/master Author: Colomban Wendling ban@herbesfolles.org Committer: Colomban Wendling ban@herbesfolles.org Date: Fri, 10 May 2024 19:50:42 UTC Commit: 11b4a00a3020b1c9ace3d3ae65aa5ec7d5ff84e0 https://github.com/geany/geany/commit/11b4a00a3020b1c9ace3d3ae65aa5ec7d5ff84...
Log Message: ----------- Merge pull request #3759 from andy5995/meson-fix-deprecated-str-fmt
Fix deprecation warning about str.format() during meson setup
Modified Paths: -------------- tests/meson.build
Modified: tests/meson.build 8 lines changed, 4 insertions(+), 4 deletions(-) =================================================================== @@ -2,7 +2,7 @@ test_deps = declare_dependency(compile_args: geany_cflags + [ '-DG_LOG_DOMAIN="G dependencies: [deps, dep_libgeany], include_directories: '..')
-ctags_tests = files([ +ctags_tests = [ 'ctags/1795612.js.tags', 'ctags/1850914.js.tags', 'ctags/1878155.js.tags', @@ -354,12 +354,12 @@ ctags_tests = files([ 'ctags/vhdl-process.vhd.tags', 'ctags/vhdl-type.vhd.tags', 'ctags/whitespaces.php.tags' -]) +]
runner = find_program('ctags/runner.sh') foreach t : ctags_tests - test('@0@'.format(t), runner, - args: [join_paths(meson.build_root(), 'geany'), t], + test(t, runner, + args: [join_paths(meson.build_root(), 'geany'), files(t)], env: ['top_srcdir='+meson.source_root(), 'top_builddir=' + meson.build_root()]) endforeach
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).