All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] selftests/memfd: add run_fuse_test.sh to TEST_FILES
@ 2018-02-06 22:22 ` 
  0 siblings, 0 replies; 6+ messages in thread
From: Daniel Díaz @ 2018-02-06 22:22 UTC (permalink / raw)
  To: shuahkh, linux-kselftest
  Cc: Anders Roxell, Daniel Díaz, Shuah Khan, Mike Kravetz,
	Andrew Morton, Marc-André Lureau, SeongJae Park,
	Thomas Gleixner, Greg Kroah-Hartman, open list

From: Anders Roxell <anders.roxell@linaro.org>

While testing memfd tests, there is a missing script, as reported by
kselftest:

./run_tests.sh: line 7: ./run_fuse_test.sh: No such file or directory

Signed-off-by: Anders Roxell <anders.roxell@linaro.org>
Signed-off-by: Daniel Díaz <daniel.diaz@linaro.org>
---
 tools/testing/selftests/memfd/Makefile | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tools/testing/selftests/memfd/Makefile b/tools/testing/selftests/memfd/Makefile
index a5276a9..0862e6f 100644
--- a/tools/testing/selftests/memfd/Makefile
+++ b/tools/testing/selftests/memfd/Makefile
@@ -5,6 +5,7 @@ CFLAGS += -I../../../../include/
 CFLAGS += -I../../../../usr/include/
 
 TEST_PROGS := run_tests.sh
+TEST_FILES := run_fuse_test.sh
 TEST_GEN_FILES := memfd_test fuse_mnt fuse_test
 
 fuse_mnt.o: CFLAGS += $(shell pkg-config fuse --cflags)
-- 
2.7.4

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

* [Linux-kselftest-mirror] [PATCH] selftests/memfd: add run_fuse_test.sh to TEST_FILES
@ 2018-02-06 22:22 ` 
  0 siblings, 0 replies; 6+ messages in thread
From:  @ 2018-02-06 22:22 UTC (permalink / raw)


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 1084 bytes --]

From: Anders Roxell <anders.roxell at linaro.org>

While testing memfd tests, there is a missing script, as reported by
kselftest:

./run_tests.sh: line 7: ./run_fuse_test.sh: No such file or directory

Signed-off-by: Anders Roxell <anders.roxell at linaro.org>
Signed-off-by: Daniel Díaz <daniel.diaz at linaro.org>
---
 tools/testing/selftests/memfd/Makefile | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tools/testing/selftests/memfd/Makefile b/tools/testing/selftests/memfd/Makefile
index a5276a9..0862e6f 100644
--- a/tools/testing/selftests/memfd/Makefile
+++ b/tools/testing/selftests/memfd/Makefile
@@ -5,6 +5,7 @@ CFLAGS += -I../../../../include/
 CFLAGS += -I../../../../usr/include/
 
 TEST_PROGS := run_tests.sh
+TEST_FILES := run_fuse_test.sh
 TEST_GEN_FILES := memfd_test fuse_mnt fuse_test
 
 fuse_mnt.o: CFLAGS += $(shell pkg-config fuse --cflags)
-- 
2.7.4

--
To unsubscribe from this list: send the line "unsubscribe linux-kselftest" in
the body of a message to majordomo at vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* [Linux-kselftest-mirror] [PATCH] selftests/memfd: add run_fuse_test.sh to TEST_FILES
@ 2018-02-06 22:22 ` 
  0 siblings, 0 replies; 6+ messages in thread
From: Daniel Díaz @ 2018-02-06 22:22 UTC (permalink / raw)


From: Anders Roxell <anders.roxell@linaro.org>

While testing memfd tests, there is a missing script, as reported by
kselftest:

./run_tests.sh: line 7: ./run_fuse_test.sh: No such file or directory

Signed-off-by: Anders Roxell <anders.roxell at linaro.org>
Signed-off-by: Daniel Díaz <daniel.diaz at linaro.org>
---
 tools/testing/selftests/memfd/Makefile | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tools/testing/selftests/memfd/Makefile b/tools/testing/selftests/memfd/Makefile
index a5276a9..0862e6f 100644
--- a/tools/testing/selftests/memfd/Makefile
+++ b/tools/testing/selftests/memfd/Makefile
@@ -5,6 +5,7 @@ CFLAGS += -I../../../../include/
 CFLAGS += -I../../../../usr/include/
 
 TEST_PROGS := run_tests.sh
+TEST_FILES := run_fuse_test.sh
 TEST_GEN_FILES := memfd_test fuse_mnt fuse_test
 
 fuse_mnt.o: CFLAGS += $(shell pkg-config fuse --cflags)
-- 
2.7.4

--
To unsubscribe from this list: send the line "unsubscribe linux-kselftest" in
the body of a message to majordomo at vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH] selftests/memfd: add run_fuse_test.sh to TEST_FILES
  2018-02-06 22:22 ` 
  (?)
@ 2018-02-13 21:24   ` shuahkh
  -1 siblings, 0 replies; 6+ messages in thread
From: Shuah Khan @ 2018-02-13 21:24 UTC (permalink / raw)
  To: Daniel Díaz, linux-kselftest
  Cc: Anders Roxell, Shuah Khan, Mike Kravetz, Andrew Morton,
	Marc-André Lureau, SeongJae Park, Thomas Gleixner,
	Greg Kroah-Hartman, open list, Shuah Khan

On 02/06/2018 03:22 PM, Daniel Díaz wrote:
> From: Anders Roxell <anders.roxell@linaro.org>
> 
> While testing memfd tests, there is a missing script, as reported by
> kselftest:
> 
> ./run_tests.sh: line 7: ./run_fuse_test.sh: No such file or directory
> 
> Signed-off-by: Anders Roxell <anders.roxell@linaro.org>
> Signed-off-by: Daniel Díaz <daniel.diaz@linaro.org>
> ---
>  tools/testing/selftests/memfd/Makefile | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/tools/testing/selftests/memfd/Makefile b/tools/testing/selftests/memfd/Makefile
> index a5276a9..0862e6f 100644
> --- a/tools/testing/selftests/memfd/Makefile
> +++ b/tools/testing/selftests/memfd/Makefile
> @@ -5,6 +5,7 @@ CFLAGS += -I../../../../include/
>  CFLAGS += -I../../../../usr/include/
>  
>  TEST_PROGS := run_tests.sh
> +TEST_FILES := run_fuse_test.sh
>  TEST_GEN_FILES := memfd_test fuse_mnt fuse_test
>  
>  fuse_mnt.o: CFLAGS += $(shell pkg-config fuse --cflags)
> 

Looks like Andrew applied this mm. It will go through mm tree.

thanks,
-- Shuah

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

* [PATCH] selftests/memfd: add run_fuse_test.sh to TEST_FILES
@ 2018-02-13 21:24   ` shuahkh
  0 siblings, 0 replies; 6+ messages in thread
From: shuahkh @ 2018-02-13 21:24 UTC (permalink / raw)


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 1252 bytes --]

On 02/06/2018 03:22 PM, Daniel Díaz wrote:
> From: Anders Roxell <anders.roxell at linaro.org>
> 
> While testing memfd tests, there is a missing script, as reported by
> kselftest:
> 
> ./run_tests.sh: line 7: ./run_fuse_test.sh: No such file or directory
> 
> Signed-off-by: Anders Roxell <anders.roxell at linaro.org>
> Signed-off-by: Daniel Díaz <daniel.diaz at linaro.org>
> ---
>  tools/testing/selftests/memfd/Makefile | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/tools/testing/selftests/memfd/Makefile b/tools/testing/selftests/memfd/Makefile
> index a5276a9..0862e6f 100644
> --- a/tools/testing/selftests/memfd/Makefile
> +++ b/tools/testing/selftests/memfd/Makefile
> @@ -5,6 +5,7 @@ CFLAGS += -I../../../../include/
>  CFLAGS += -I../../../../usr/include/
>  
>  TEST_PROGS := run_tests.sh
> +TEST_FILES := run_fuse_test.sh
>  TEST_GEN_FILES := memfd_test fuse_mnt fuse_test
>  
>  fuse_mnt.o: CFLAGS += $(shell pkg-config fuse --cflags)
> 

Looks like Andrew applied this mm. It will go through mm tree.

thanks,
-- Shuah
--
To unsubscribe from this list: send the line "unsubscribe linux-kselftest" in
the body of a message to majordomo at vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* [PATCH] selftests/memfd: add run_fuse_test.sh to TEST_FILES
@ 2018-02-13 21:24   ` shuahkh
  0 siblings, 0 replies; 6+ messages in thread
From: Shuah Khan @ 2018-02-13 21:24 UTC (permalink / raw)


On 02/06/2018 03:22 PM, Daniel Díaz wrote:
> From: Anders Roxell <anders.roxell at linaro.org>
> 
> While testing memfd tests, there is a missing script, as reported by
> kselftest:
> 
> ./run_tests.sh: line 7: ./run_fuse_test.sh: No such file or directory
> 
> Signed-off-by: Anders Roxell <anders.roxell at linaro.org>
> Signed-off-by: Daniel Díaz <daniel.diaz at linaro.org>
> ---
>  tools/testing/selftests/memfd/Makefile | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/tools/testing/selftests/memfd/Makefile b/tools/testing/selftests/memfd/Makefile
> index a5276a9..0862e6f 100644
> --- a/tools/testing/selftests/memfd/Makefile
> +++ b/tools/testing/selftests/memfd/Makefile
> @@ -5,6 +5,7 @@ CFLAGS += -I../../../../include/
>  CFLAGS += -I../../../../usr/include/
>  
>  TEST_PROGS := run_tests.sh
> +TEST_FILES := run_fuse_test.sh
>  TEST_GEN_FILES := memfd_test fuse_mnt fuse_test
>  
>  fuse_mnt.o: CFLAGS += $(shell pkg-config fuse --cflags)
> 

Looks like Andrew applied this mm. It will go through mm tree.

thanks,
-- Shuah
--
To unsubscribe from this list: send the line "unsubscribe linux-kselftest" in
the body of a message to majordomo at vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

end of thread, other threads:[~2018-02-13 21:24 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-02-06 22:22 [PATCH] selftests/memfd: add run_fuse_test.sh to TEST_FILES Daniel Díaz
2018-02-06 22:22 ` [Linux-kselftest-mirror] " Daniel Díaz
2018-02-06 22:22 ` 
2018-02-13 21:24 ` Shuah Khan
2018-02-13 21:24   ` Shuah Khan
2018-02-13 21:24   ` shuahkh

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.