mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-04-15 10:42:40 -04:00
Reducing the time taken by dscr_sysfs_test.c allows restoring the
default timeout, which was removed in
commit 850507f30c ("selftests/powerpc: Turn off timeout setting for
benchmarks, dscr, signal, tm") because that test took too long.
Signed-off-by: Benjamin Gray <bgray@linux.ibm.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://msgid.link/20230406043320.125138-8-bgray@linux.ibm.com
13 lines
397 B
Makefile
13 lines
397 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
TEST_GEN_PROGS := dscr_default_test dscr_explicit_test dscr_user_test \
|
|
dscr_inherit_test dscr_inherit_exec_test dscr_sysfs_test \
|
|
dscr_sysfs_thread_test
|
|
|
|
top_srcdir = ../../../../..
|
|
include ../../lib.mk
|
|
|
|
$(OUTPUT)/dscr_default_test: LDLIBS += -lpthread
|
|
$(OUTPUT)/dscr_explicit_test: LDLIBS += -lpthread
|
|
|
|
$(TEST_GEN_PROGS): ../harness.c ../utils.c
|