mirror of
https://github.com/torvalds/linux.git
synced 2024-11-26 06:02:05 +00:00
96788ac53d
Add log information when run full test successfully. Signed-off-by: Zhao Gongyi <zhaogongyi@huawei.com> Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
12 lines
233 B
Makefile
12 lines
233 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
all:
|
|
|
|
TEST_PROGS := cpu-on-off-test.sh
|
|
|
|
include ../lib.mk
|
|
|
|
run_full_test:
|
|
@/bin/bash ./cpu-on-off-test.sh -a && echo "cpu-hotplug selftests: [PASS]" || echo "cpu-hotplug selftests: [FAIL]"
|
|
|
|
clean:
|