Message ID | 20220622121237.5832-1-liujing@cmss.chinamobile.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 1da9e27415bfc54db25c8374331aaf5321185a1d |
Headers | show |
Series | tc-testing: gitignore, delete plugins directory | expand |
Hello: This patch was applied to netdev/net-next.git (master) by Jakub Kicinski <kuba@kernel.org>: On Wed, 22 Jun 2022 08:12:37 -0400 you wrote: > when we modfying kernel, commit it to our environment building. we find a error > that is "tools/testing/selftests/tc-testing/plugins" failed: No such file or directory" > > we find plugins directory is ignored in > "tools/testing/selftests/tc-testing/.gitignore", but the plugins directory > is need in "tools/testing/selftests/tc-testing/Makefile" > > [...] Here is the summary with links: - tc-testing: gitignore, delete plugins directory https://git.kernel.org/netdev/net-next/c/1da9e27415bf You are awesome, thank you!
diff --git a/tools/testing/selftests/tc-testing/.gitignore b/tools/testing/selftests/tc-testing/.gitignore index d52f65de23b4..9fe1cef72728 100644 --- a/tools/testing/selftests/tc-testing/.gitignore +++ b/tools/testing/selftests/tc-testing/.gitignore @@ -1,7 +1,6 @@ # SPDX-License-Identifier: GPL-2.0-only __pycache__/ *.pyc -plugins/ *.xml *.tap tdc_config_local.py
when we modfying kernel, commit it to our environment building. we find a error that is "tools/testing/selftests/tc-testing/plugins" failed: No such file or directory" we find plugins directory is ignored in "tools/testing/selftests/tc-testing/.gitignore", but the plugins directory is need in "tools/testing/selftests/tc-testing/Makefile" Signed-off-by: liujing <liujing@cmss.chinamobile.com> --- tools/testing/selftests/tc-testing/.gitignore | 1 - 1 file changed, 1 deletion(-)