diff options
author | Greg Hackmann <ghackmann@google.com> | 2016-02-22 21:10:57 +0300 |
---|---|---|
committer | Shuah Khan <shuahkh@osg.samsung.com> | 2016-02-25 19:47:51 +0300 |
commit | bfd092b8c272866ba1db3e63ebbe08f8ccf979cc (patch) | |
tree | 3f26ac6c53f7ae1aa207262f2d83a49e3d8eaf8d /tools/testing/selftests/breakpoints/Makefile | |
parent | 9d22f6e14e249713108c8adcc8705c39303f0628 (diff) | |
download | linux-bfd092b8c272866ba1db3e63ebbe08f8ccf979cc.tar.xz |
selftests: breakpoint: add step_after_suspend_test
Commit e56d82a11617 ("arm64: cpu hotplug: ensure we mask out
CPU_TASKS_FROZEN in notifiers") fixed a long-standing ARM64 bug that
broke single-stepping after a suspend/resume cycle. Add a kernel
selftest to make sure this doesn't regress or affect other platforms.
Signed-off-by: Greg Hackmann <ghackmann@google.com>
Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
Diffstat (limited to 'tools/testing/selftests/breakpoints/Makefile')
-rw-r--r-- | tools/testing/selftests/breakpoints/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/testing/selftests/breakpoints/Makefile b/tools/testing/selftests/breakpoints/Makefile index c0d957015f52..74e533fd4bc5 100644 --- a/tools/testing/selftests/breakpoints/Makefile +++ b/tools/testing/selftests/breakpoints/Makefile @@ -6,9 +6,11 @@ ifeq ($(ARCH),x86) TEST_PROGS := breakpoint_test endif +TEST_PROGS += step_after_suspend_test + all: $(TEST_PROGS) include ../lib.mk clean: - rm -fr breakpoint_test + rm -fr breakpoint_test step_after_suspend_test |