|
From: <sv...@va...> - 2011-11-08 20:20:52
|
Author: florian Date: 2011-11-08 20:16:09 +0000 (Tue, 08 Nov 2011) New Revision: 12262 Log: Remove TEST_TOOLS and TEXT_EXP_TOOLS as they are no longer needed. Modified: trunk/Makefile.am Modified: trunk/Makefile.am =================================================================== --- trunk/Makefile.am 2011-11-08 20:14:35 UTC (rev 12261) +++ trunk/Makefile.am 2011-11-08 20:16:09 UTC (rev 12262) @@ -16,16 +16,6 @@ exp-bbv \ exp-dhat -# DDD: once all tools work on Darwin, TEST_TOOLS and TEST_EXP_TOOLS can be -# replaced with TOOLS and EXP_TOOLS. -TEST_TOOLS = $(TOOLS) -if !VGCONF_OS_IS_DARWIN - TEST_EXP_TOOLS = $(EXP_TOOLS) -else - TEST_EXP_TOOLS = exp-bbv -endif - - # Put docs last because building the HTML is slow and we want to get # everything else working before we try it. SUBDIRS = \ @@ -76,13 +66,13 @@ ## Preprend @PERL@ because tests/vg_regtest isn't executable regtest: check - -tests/check_makefile_consistency gdbserver_tests $(TEST_TOOLS) $(TEST_EXP_TOOLS) + -tests/check_makefile_consistency gdbserver_tests $(TOOLS) $(EXP_TOOLS) gdbserver_tests/make_local_links $(GDB) - @PERL@ tests/vg_regtest gdbserver_tests $(TEST_TOOLS) $(TEST_EXP_TOOLS) + @PERL@ tests/vg_regtest gdbserver_tests $(TOOLS) $(EXP_TOOLS) nonexp-regtest: check - @PERL@ tests/vg_regtest $(TEST_TOOLS) + @PERL@ tests/vg_regtest $(TOOLS) exp-regtest: check - @PERL@ tests/vg_regtest gdbserver_tests $(TEST_EXP_TOOLS) + @PERL@ tests/vg_regtest gdbserver_tests $(EXP_TOOLS) # Nb: gdbserver_tests are put in exp-regtest rather than nonexp-regtest # because they are tested with various valgrind tools, so might be using # an experimental tool. |