From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-2.9 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00, URIBL_BLOCKED shortcircuit=no autolearn=unavailable version=3.3.2 X-Original-To: cmogstored-public@bogomips.org Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 3AAA41F4CF for ; Wed, 11 Nov 2015 10:46:22 +0000 (UTC) From: Eric Wong To: cmogstored-public@bogomips.org Subject: [PATCH] fix tmpdir dependency for slow Ruby tests Date: Wed, 11 Nov 2015 10:46:22 +0000 Message-Id: <20151111104622.5863-1-e@80x24.org> List-Id: .slowrb tests have a different suffix and the test dependencies need to be split out separately. --- Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 5860f9c..dc49d26 100644 --- a/Makefile.am +++ b/Makefile.am @@ -144,7 +144,8 @@ TESTS = $(SLOW_RB_FILES) $(RB_TESTS_FAST) $(check_tests) $(PERL_TESTS) # we need TMPDIR to work in a place where iostat(1) gives stats test_tmpdir = $(top_builddir)/tmp -$(RB_TESTS:.rb=.log): $(bin_PROGRAMS) $(test_tmpdir)/.stamp +$(RB_TESTS_FAST:.rb=.log): $(bin_PROGRAMS) $(test_tmpdir)/.stamp +$(RB_TESTS_SLOW:.slowrb=.log): $(bin_PROGRAMS) $(test_tmpdir)/.stamp $(PERL_TESTS:.perl=.log): $(bin_PROGRAMS) $(test_tmpdir)/.stamp $(test_tmpdir)/.stamp: -- EW