Don't run stress tests as part of check target.

This change was intended as part of
8f57e3f1ae (Remove check_stress from check
target's dependencies.).
This commit is contained in:
Jason Evans 2015-09-15 00:08:05 -07:00
parent 708ed79834
commit 0108b1fd04

View File

@ -358,7 +358,7 @@ check_integration: tests_integration check_integration_dir
stress: tests_stress stress_dir
$(SHELL) $(objroot)test/test.sh $(TESTS_STRESS:$(srcroot)%.c=$(objroot)%)
check: tests check_dir check_integration_prof
$(SHELL) $(objroot)test/test.sh $(TESTS:$(srcroot)%.c=$(objroot)%)
$(SHELL) $(objroot)test/test.sh $(TESTS_UNIT:$(srcroot)%.c=$(objroot)%) $(TESTS_INTEGRATION:$(srcroot)%.c=$(objroot)%)
ifeq ($(enable_code_coverage), 1)
coverage_unit: check_unit