mirror of
https://github.com/intel/isa-l.git
synced 2025-01-19 04:26:08 +01:00
Add missing make targets: checks and check
Makefile.am was missing make checks and Makefile.unx was missing make check. Added both to be consistent with nmake file. Change-Id: I08116ac820bccdb5500c794fa1e12c2a9bfdf802 Signed-off-by: Greg Tucker <greg.b.tucker@intel.com>
This commit is contained in:
parent
8fe5cbeeed
commit
136f82c9d0
@ -59,6 +59,7 @@ CLEANFILES += ${EXTRA_PROGRAMS}
|
|||||||
|
|
||||||
perfs: ${perf_tests}
|
perfs: ${perf_tests}
|
||||||
tests: ${unit_tests}
|
tests: ${unit_tests}
|
||||||
|
checks: ${check_tests}
|
||||||
other: ${other_tests}
|
other: ${other_tests}
|
||||||
perf: $(addsuffix .run,$(perf_tests))
|
perf: $(addsuffix .run,$(perf_tests))
|
||||||
ex: ${examples}
|
ex: ${examples}
|
||||||
|
3
make.inc
3
make.inc
@ -111,6 +111,7 @@ perf_testswin64 = $(perf_tests)
|
|||||||
all_tests = $(notdir $(sort $(perf_tests$(arch)) $(check_tests$(arch)) $(unit_tests$(arch)) $(examples$(arch)) $(other_tests)))
|
all_tests = $(notdir $(sort $(perf_tests$(arch)) $(check_tests$(arch)) $(unit_tests$(arch)) $(examples$(arch)) $(other_tests)))
|
||||||
all_unit_tests = $(notdir $(sort $(check_tests$(arch)) $(unit_tests$(arch))))
|
all_unit_tests = $(notdir $(sort $(check_tests$(arch)) $(unit_tests$(arch))))
|
||||||
all_perf_tests = $(notdir $(sort $(perf_tests$(arch))))
|
all_perf_tests = $(notdir $(sort $(perf_tests$(arch))))
|
||||||
|
all_check_tests = $(notdir $(sort $(check_tests$(arch))))
|
||||||
|
|
||||||
$(all_unit_tests): % : %.c $(lib_name)
|
$(all_unit_tests): % : %.c $(lib_name)
|
||||||
$(all_perf_tests): % : %.c $(lib_name)
|
$(all_perf_tests): % : %.c $(lib_name)
|
||||||
@ -119,11 +120,13 @@ $(sort $(notdir $(other_tests))): % : %.c $(lib_name)
|
|||||||
|
|
||||||
sim test trace: $(addsuffix .run,$(all_unit_tests))
|
sim test trace: $(addsuffix .run,$(all_unit_tests))
|
||||||
perf: $(addsuffix .run,$(all_perf_tests))
|
perf: $(addsuffix .run,$(all_perf_tests))
|
||||||
|
check: $(addsuffix .run,$(all_check_tests))
|
||||||
ex: $(notdir $(examples$(arch)))
|
ex: $(notdir $(examples$(arch)))
|
||||||
all: lib $(all_tests)
|
all: lib $(all_tests)
|
||||||
other: $(notdir $(other_tests))
|
other: $(notdir $(other_tests))
|
||||||
tests: $(all_unit_tests)
|
tests: $(all_unit_tests)
|
||||||
perfs: $(all_perf_tests)
|
perfs: $(all_perf_tests)
|
||||||
|
checks: $(all_check_tests)
|
||||||
check test perf: SIM=
|
check test perf: SIM=
|
||||||
trace: SIMFLAGS = -debugtrace
|
trace: SIMFLAGS = -debugtrace
|
||||||
check test sim:
|
check test sim:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user