t: fix query_py and web_py paths after elixir/ restructure
query.py and web.py were moved from the project root and http/ into the elixir/ package directory, but the find_program() calls in TestEnvironment.pm were not updated to follow. Signed-off-by: Thomas Perrot <thomas.perrot@bootlin.com>
This commit is contained in:
parent
9276d2a98b
commit
82a5c54605
1 changed files with 2 additions and 2 deletions
|
|
@ -96,13 +96,13 @@ has script_sh => (
|
||||||
default => sub { find_program('script.sh') }
|
default => sub { find_program('script.sh') }
|
||||||
);
|
);
|
||||||
has query_py => (
|
has query_py => (
|
||||||
default => sub { find_program('query.py') }
|
default => sub { find_program('elixir', 'query.py') }
|
||||||
);
|
);
|
||||||
has update_py => (
|
has update_py => (
|
||||||
default => sub { find_program('update.py') }
|
default => sub { find_program('update.py') }
|
||||||
);
|
);
|
||||||
has web_py => (
|
has web_py => (
|
||||||
default => sub { find_program(qw(http web.py)) }
|
default => sub { find_program('elixir', 'web.py') }
|
||||||
);
|
);
|
||||||
has find_doc => (
|
has find_doc => (
|
||||||
default => sub { find_program('find-file-doc-comments.pl') }
|
default => sub { find_program('find-file-doc-comments.pl') }
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue