diff options
author | Jason Evans <jasone@canonware.com> | 2015-09-15 07:08:05 (GMT) |
---|---|---|
committer | Jason Evans <jasone@canonware.com> | 2015-09-15 07:08:05 (GMT) |
commit | 0108b1fd0411db444d4074582013879f757fa1df (patch) | |
tree | 8ec5e9a2bc8e13f1ed43299bf165bc01628696db /Makefile.in | |
parent | 708ed79834fc3b8e5b14dbb0128a0ebfce63a38f (diff) | |
download | jemalloc-0108b1fd0411db444d4074582013879f757fa1df.zip jemalloc-0108b1fd0411db444d4074582013879f757fa1df.tar.gz jemalloc-0108b1fd0411db444d4074582013879f757fa1df.tar.bz2 |
Don't run stress tests as part of check target.
This change was intended as part of
8f57e3f1aeb86021b3d078b825bc8c42b2a9af6f (Remove check_stress from check
target's dependencies.).
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 9b2d0a1..a836e74 100644 --- a/Makefile.in +++ b/Makefile.in @@ -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 |