All of lore.kernel.org
 help / color / mirror / Atom feed
From: zohar at linux.ibm.com (Mimi Zohar)
Subject: [GIT PULL] kexec selftests for Linux 5.2
Date: Thu, 11 Apr 2019 21:20:29 -0400	[thread overview]
Message-ID: <1555032029.4914.3.camel@linux.ibm.com> (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

WARNING: multiple messages have this Message-ID (diff)
From: zohar@linux.ibm.com (Mimi Zohar)
Subject: [GIT PULL] kexec selftests for Linux 5.2
Date: Thu, 11 Apr 2019 21:20:29 -0400	[thread overview]
Message-ID: <1555032029.4914.3.camel@linux.ibm.com> (raw)
Message-ID: <20190412012029.uBeZGxmr0o03cFWKSZR_7VUqgIaT0lj2mAJ_KRI21TY@z> (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

             reply	other threads:[~2019-04-12  1:20 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-04-12  1:20 zohar [this message]
2019-04-12  1:20 ` [GIT PULL] kexec selftests for Linux 5.2 Mimi Zohar
2019-04-19 19:13 ` shuah
2019-04-19 19:13   ` shuah

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1555032029.4914.3.camel@linux.ibm.com \
    --to=unknown@example.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.