Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests: Add debugging output to resolver-paths
I don't know much about your preferences or how you like to configure tests, but I took a guess and made a few quick changes. With the changes in this PR, when `meson test` is run with `-v`, one can see more: ``` stderr: ╭<parent> /hello world/banana/ ├<child> quick-js/././ww/aee/ ├> /hello world/banana/quick-js/ww/aee ╰>> /hello world/banana/quick-js/ww/aee/ ╭<parent> /hello world/banana/ ├<child> quick-js/././ww/aee/ ├> /hello world/banana/quick-js/ww/ ╰>> /hello world/banana/quick-js/ww/aee/ ╭<parent> /hello world/banana/ ├<child> quick-js/././ww/aee ├> /hello world/banana/quick-js/ww/ ╰>> /hello world/banana/quick-js/ww/ ╭<parent> /hello world/banana/ ├<child> ../../quick-js/ww/a ├> /quick-js/ww/a ╰>> /quick-js/ww/a ╭<parent> /hello world/banana/ ├<child> ./../.././quick-js/ww/a ├> /quick-js/ww/a ╰>> /quick-js/ww/a ╭<parent> /hello world/banana/ ├<child> ../../quick-js/ww/a ├> ╰>> ╭<parent> /hello world/banana/ ├<child> ./../.././quick-js/ww/a ├> ╰>> ╭<parent> /hello world/banana/ ├<child> quick-js/../quick-js/ww/a ├> /hello world/banana/quick-js/ww/a ╰>> /hello world/banana/ww/a ╭<parent> /hello world/banana/ ├<child> quick-js/./.././ww/a ├> /hello world/banana/ww/a ╰>> /hello world/banana/ww/a ╭<parent> /a/ ├<child> b../ ├> /a/ ╰>> /a/b../ ret = 4 test_resolver-paths: ../test/marginal/resolver-paths.cpp:33: int main(): Assertion `ret=0' failed. ```
- Loading branch information