aboutsummaryrefslogtreecommitdiff
path: root/test/functional/rpc_users.py
AgeCommit message (Collapse)Author
2018-07-15scripted-diff: Fix references to share/rpcuser (now share/rpcauth)Mason Simon
Commit 3fdb29778a0b598d4ddf05ec5ed4593641d0da6e renamed share/rpcuser to share/rpcauth but left references to the old path in code; this commit fixes the old references. Performed update using https://github.com/facebook/codemod with command: `codemod --extensions cpp,py,md 'share/rpcuser' 'share/rpcauth'` -BEGIN VERIFY SCRIPT- git grep --files-with-matches 'share/rpcuser' src/*.cpp | xargs sed -i -E 's:share/rpcuser:share/rpcauth:g' git grep --files-with-matches 'share/rpcuser' test/functional/*.py | xargs sed -i -E 's:share/rpcuser:share/rpcauth:g' -END VERIFY SCRIPT-
2018-04-23test: Add rpcauth pair that generated by rpcauthChun Kuan Lee
2018-03-19qa: Use node.datadir instead of tmpdir in test frameworkMarcoFalke
2018-01-25[tests] Rename rpc_* functional tests.Anthony Towns