public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] test_kmod: fix kmod.sh by making it executable
@ 2017-08-03 16:57 Luis R. Rodriguez
  2017-08-03 16:57 ` [PATCH 2/2] test_sysctl: fix sysctl.sh " Luis R. Rodriguez
  2017-08-07 21:15 ` [PATCH 1/2] test_kmod: fix kmod.sh " Shuah Khan
  0 siblings, 2 replies; 4+ messages in thread
From: Luis R. Rodriguez @ 2017-08-03 16:57 UTC (permalink / raw)
  To: shuah, linux-kselftest
  Cc: akpm, keescook, pmladek, dan.carpenter, colin.king, dcb314,
	linux-kernel, Luis R. Rodriguez

We had just forgotten to do this. Without this if we run the
following we get a permission denied:

sudo make -C tools/testing/selftests/kmod/ run_tests
make: Entering directory '/home/mcgrof/linux-next/tools/testing/selftests/kmod'
/bin/sh: ./kmod.sh: Permission denied
selftests:  kmod.sh [FAIL]
/home/mcgrof/linux-next/tools/testing/selftests/kmod
make: Leaving directory '/home/mcgrof/linux-next/tools/testing/selftests/kmod

Fixes: 39258f448d71 ("kmod: add test driver to stress test the module loader")
Signed-off-by: Luis R. Rodriguez <mcgrof@kernel.org>
---
 tools/testing/selftests/kmod/kmod.sh | 0
 1 file changed, 0 insertions(+), 0 deletions(-)
 mode change 100644 => 100755 tools/testing/selftests/kmod/kmod.sh

diff --git a/tools/testing/selftests/kmod/kmod.sh b/tools/testing/selftests/kmod/kmod.sh
old mode 100644
new mode 100755
-- 
2.11.0

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH 2/2] test_sysctl: fix sysctl.sh by making it executable
  2017-08-03 16:57 [PATCH 1/2] test_kmod: fix kmod.sh by making it executable Luis R. Rodriguez
@ 2017-08-03 16:57 ` Luis R. Rodriguez
  2017-08-07 21:15   ` Shuah Khan
  2017-08-07 21:15 ` [PATCH 1/2] test_kmod: fix kmod.sh " Shuah Khan
  1 sibling, 1 reply; 4+ messages in thread
From: Luis R. Rodriguez @ 2017-08-03 16:57 UTC (permalink / raw)
  To: shuah, linux-kselftest
  Cc: akpm, keescook, pmladek, dan.carpenter, colin.king, dcb314,
	linux-kernel, Luis R. Rodriguez

We had just forogtten to do this. Without this the following test fails:

$ sudo make -C tools/testing/selftests/sysctl/ run_tests
make: Entering directory '/home/mcgrof/linux-next/tools/testing/selftests/sysctl'
/bin/sh: ./sysctl.sh: Permission denied
selftests:  sysctl.sh [FAIL]
/home/mcgrof/linux-next/tools/testing/selftests/sysctl
make: Leaving directory '/home/mcgrof/linux-next/tools/testing/selftests/sysctl'

Fixes: 64b671204afd71 ("test_sysctl: add generic script to expand on tests")
Signed-off-by: Luis R. Rodriguez <mcgrof@kernel.org>
---
 tools/testing/selftests/sysctl/sysctl.sh | 0
 1 file changed, 0 insertions(+), 0 deletions(-)
 mode change 100644 => 100755 tools/testing/selftests/sysctl/sysctl.sh

diff --git a/tools/testing/selftests/sysctl/sysctl.sh b/tools/testing/selftests/sysctl/sysctl.sh
old mode 100644
new mode 100755
-- 
2.11.0

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 1/2] test_kmod: fix kmod.sh by making it executable
  2017-08-03 16:57 [PATCH 1/2] test_kmod: fix kmod.sh by making it executable Luis R. Rodriguez
  2017-08-03 16:57 ` [PATCH 2/2] test_sysctl: fix sysctl.sh " Luis R. Rodriguez
@ 2017-08-07 21:15 ` Shuah Khan
  1 sibling, 0 replies; 4+ messages in thread
From: Shuah Khan @ 2017-08-07 21:15 UTC (permalink / raw)
  To: Luis R. Rodriguez, linux-kselftest
  Cc: akpm, keescook, pmladek, dan.carpenter, colin.king, dcb314,
	linux-kernel, Shuah Khan

On 08/03/2017 10:57 AM, Luis R. Rodriguez wrote:
> We had just forgotten to do this. Without this if we run the
> following we get a permission denied:
> 
> sudo make -C tools/testing/selftests/kmod/ run_tests
> make: Entering directory '/home/mcgrof/linux-next/tools/testing/selftests/kmod'
> /bin/sh: ./kmod.sh: Permission denied
> selftests:  kmod.sh [FAIL]
> /home/mcgrof/linux-next/tools/testing/selftests/kmod
> make: Leaving directory '/home/mcgrof/linux-next/tools/testing/selftests/kmod
> 
> Fixes: 39258f448d71 ("kmod: add test driver to stress test the module loader")
> Signed-off-by: Luis R. Rodriguez <mcgrof@kernel.org>
> ---
>  tools/testing/selftests/kmod/kmod.sh | 0
>  1 file changed, 0 insertions(+), 0 deletions(-)
>  mode change 100644 => 100755 tools/testing/selftests/kmod/kmod.sh
> 
> diff --git a/tools/testing/selftests/kmod/kmod.sh b/tools/testing/selftests/kmod/kmod.sh
> old mode 100644
> new mode 100755
> 


Thanks. Applied to linux-kselftest fixes for 4.13-final

thanks,
-- Shuah

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 2/2] test_sysctl: fix sysctl.sh by making it executable
  2017-08-03 16:57 ` [PATCH 2/2] test_sysctl: fix sysctl.sh " Luis R. Rodriguez
@ 2017-08-07 21:15   ` Shuah Khan
  0 siblings, 0 replies; 4+ messages in thread
From: Shuah Khan @ 2017-08-07 21:15 UTC (permalink / raw)
  To: Luis R. Rodriguez, linux-kselftest
  Cc: akpm, keescook, pmladek, dan.carpenter, colin.king, dcb314,
	linux-kernel, Shuah Khan

On 08/03/2017 10:57 AM, Luis R. Rodriguez wrote:
> We had just forogtten to do this. Without this the following test fails:
> 
> $ sudo make -C tools/testing/selftests/sysctl/ run_tests
> make: Entering directory '/home/mcgrof/linux-next/tools/testing/selftests/sysctl'
> /bin/sh: ./sysctl.sh: Permission denied
> selftests:  sysctl.sh [FAIL]
> /home/mcgrof/linux-next/tools/testing/selftests/sysctl
> make: Leaving directory '/home/mcgrof/linux-next/tools/testing/selftests/sysctl'
> 
> Fixes: 64b671204afd71 ("test_sysctl: add generic script to expand on tests")
> Signed-off-by: Luis R. Rodriguez <mcgrof@kernel.org>
> ---
>  tools/testing/selftests/sysctl/sysctl.sh | 0
>  1 file changed, 0 insertions(+), 0 deletions(-)
>  mode change 100644 => 100755 tools/testing/selftests/sysctl/sysctl.sh
> 
> diff --git a/tools/testing/selftests/sysctl/sysctl.sh b/tools/testing/selftests/sysctl/sysctl.sh
> old mode 100644
> new mode 100755
> 

Thanks. Applied to linux-kselftest fixes for 4.13-final.

thanks,
-- Shuah

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2017-08-07 21:16 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-08-03 16:57 [PATCH 1/2] test_kmod: fix kmod.sh by making it executable Luis R. Rodriguez
2017-08-03 16:57 ` [PATCH 2/2] test_sysctl: fix sysctl.sh " Luis R. Rodriguez
2017-08-07 21:15   ` Shuah Khan
2017-08-07 21:15 ` [PATCH 1/2] test_kmod: fix kmod.sh " Shuah Khan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox