jrushford commented on pull request #5352: URL: https://github.com/apache/trafficcontrol/pull/5352#issuecomment-739084043
> I tried running this against the test files, but after 5 and a half minutes I gave up. Seems like it's hanging? > > ``` > $ time ./plugin_verifier -p ./test-files/libexec -c ./test-files/etc/ > ^C > ./plugin_verifier -p ./test-files/libexec -c ./test-files/etc/ 0.01s user 0.00s system 0% cpu 5:30.75 total > ``` If you do not name one of the config files on the command line, plugin_verifier expects to read from 'stdin', see the Docs. So use: $ cat test-files/etc/remap.config | ./plugin_verifier -p ./test-files/libexec -c ./test-files/etc or $ ./plugin_verifier -p ./test-files/libexec -c ./test-files/etc test-files/etc/remap.config ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
