All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] kexec selftests for Linux 5.2
@ 2019-04-12  1:20 ` Mimi Zohar
  0 siblings, 0 replies; 4+ messages in thread
From: zohar @ 2019-04-12  1:20 UTC (permalink / raw)


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

Hi Shuah,

This pull request moves the existing kexec_load test to the
selftests/kexec directory, defines a set of local "common" shell
functions, and defines a new kexec_file_load test.  The local "common"
shell functions could be the basis for a generic set of "common" shell
functions.

Thanks,

Mimi

The following changes since commit 15ade5d2e7775667cf191cf2f94327a4889f8b9d:

  Linux 5.1-rc4 (2019-04-07 14:09:59 -1000)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git next-integrity-for-shuah

for you to fetch changes up to eaa219ab1fd2c2a81704556aefd3dcde904dda33:

  selftests/kexec: update get_secureboot_mode (2019-04-11 19:12:10 -0400)

----------------------------------------------------------------
Mimi Zohar (9):
      selftests/kexec: move the IMA kexec_load selftest to selftests/kexec
      selftests/kexec: cleanup the kexec selftest
      selftests/kexec: define a set of common functions
      selftests/kexec: define common logging functions
      selftests/kexec: define "require_root_privileges"
      selftests/kexec: kexec_file_load syscall test
      selftests/kexec: check kexec_load and kexec_file_load are enabled
      selftests/kexec: make kexec_load test independent of IMA being enabled
      selftests/kexec: update get_secureboot_mode

Petr Vorel (1):
      selftests/kexec: Add missing '=y' to config options

 tools/testing/selftests/Makefile                   |   2 +-
 tools/testing/selftests/ima/config                 |   4 -
 tools/testing/selftests/ima/test_kexec_load.sh     |  54 -----
 tools/testing/selftests/{ima => kexec}/Makefile    |   5 +-
 tools/testing/selftests/kexec/config               |   3 +
 tools/testing/selftests/kexec/kexec_common_lib.sh  | 220 +++++++++++++++++++++
 .../selftests/kexec/test_kexec_file_load.sh        | 208 +++++++++++++++++++
 tools/testing/selftests/kexec/test_kexec_load.sh   |  47 +++++
 8 files changed, 482 insertions(+), 61 deletions(-)
 delete mode 100644 tools/testing/selftests/ima/config
 delete mode 100755 tools/testing/selftests/ima/test_kexec_load.sh
 rename tools/testing/selftests/{ima => kexec}/Makefile (59%)
 create mode 100644 tools/testing/selftests/kexec/config
 create mode 100755 tools/testing/selftests/kexec/kexec_common_lib.sh
 create mode 100755 tools/testing/selftests/kexec/test_kexec_file_load.sh
 create mode 100755 tools/testing/selftests/kexec/test_kexec_load.sh

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

* [GIT PULL] kexec selftests for Linux 5.2
@ 2019-04-12  1:20 ` Mimi Zohar
  0 siblings, 0 replies; 4+ messages in thread
From: Mimi Zohar @ 2019-04-12  1:20 UTC (permalink / raw)


Hi Shuah,

This pull request moves the existing kexec_load test to the
selftests/kexec directory, defines a set of local "common" shell
functions, and defines a new kexec_file_load test.  The local "common"
shell functions could be the basis for a generic set of "common" shell
functions.

Thanks,

Mimi

The following changes since commit 15ade5d2e7775667cf191cf2f94327a4889f8b9d:

  Linux 5.1-rc4 (2019-04-07 14:09:59 -1000)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git next-integrity-for-shuah

for you to fetch changes up to eaa219ab1fd2c2a81704556aefd3dcde904dda33:

  selftests/kexec: update get_secureboot_mode (2019-04-11 19:12:10 -0400)

----------------------------------------------------------------
Mimi Zohar (9):
      selftests/kexec: move the IMA kexec_load selftest to selftests/kexec
      selftests/kexec: cleanup the kexec selftest
      selftests/kexec: define a set of common functions
      selftests/kexec: define common logging functions
      selftests/kexec: define "require_root_privileges"
      selftests/kexec: kexec_file_load syscall test
      selftests/kexec: check kexec_load and kexec_file_load are enabled
      selftests/kexec: make kexec_load test independent of IMA being enabled
      selftests/kexec: update get_secureboot_mode

Petr Vorel (1):
      selftests/kexec: Add missing '=y' to config options

 tools/testing/selftests/Makefile                   |   2 +-
 tools/testing/selftests/ima/config                 |   4 -
 tools/testing/selftests/ima/test_kexec_load.sh     |  54 -----
 tools/testing/selftests/{ima => kexec}/Makefile    |   5 +-
 tools/testing/selftests/kexec/config               |   3 +
 tools/testing/selftests/kexec/kexec_common_lib.sh  | 220 +++++++++++++++++++++
 .../selftests/kexec/test_kexec_file_load.sh        | 208 +++++++++++++++++++
 tools/testing/selftests/kexec/test_kexec_load.sh   |  47 +++++
 8 files changed, 482 insertions(+), 61 deletions(-)
 delete mode 100644 tools/testing/selftests/ima/config
 delete mode 100755 tools/testing/selftests/ima/test_kexec_load.sh
 rename tools/testing/selftests/{ima => kexec}/Makefile (59%)
 create mode 100644 tools/testing/selftests/kexec/config
 create mode 100755 tools/testing/selftests/kexec/kexec_common_lib.sh
 create mode 100755 tools/testing/selftests/kexec/test_kexec_file_load.sh
 create mode 100755 tools/testing/selftests/kexec/test_kexec_load.sh

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

* [GIT PULL] kexec selftests for Linux 5.2
@ 2019-04-19 19:13   ` shuah
  0 siblings, 0 replies; 4+ messages in thread
From: shuah @ 2019-04-19 19:13 UTC (permalink / raw)


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

On 4/11/19 7:20 PM, Mimi Zohar wrote:
> Hi Shuah,
> 
> This pull request moves the existing kexec_load test to the
> selftests/kexec directory, defines a set of local "common" shell
> functions, and defines a new kexec_file_load test.  The local "common"
> shell functions could be the basis for a generic set of "common" shell
> functions.
> 

Pulled for 5.2-rc1

thanks,
-- Shuah

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

* [GIT PULL] kexec selftests for Linux 5.2
@ 2019-04-19 19:13   ` shuah
  0 siblings, 0 replies; 4+ messages in thread
From: shuah @ 2019-04-19 19:13 UTC (permalink / raw)


On 4/11/19 7:20 PM, Mimi Zohar wrote:
> Hi Shuah,
> 
> This pull request moves the existing kexec_load test to the
> selftests/kexec directory, defines a set of local "common" shell
> functions, and defines a new kexec_file_load test.  The local "common"
> shell functions could be the basis for a generic set of "common" shell
> functions.
> 

Pulled for 5.2-rc1

thanks,
-- Shuah

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

end of thread, other threads:[~2019-04-19 19:13 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-04-12  1:20 [GIT PULL] kexec selftests for Linux 5.2 zohar
2019-04-12  1:20 ` Mimi Zohar
2019-04-19 19:13 ` shuah
2019-04-19 19:13   ` shuah

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.