diff options
author | Tom Rondeau | 2010-12-08 17:26:40 -0500 |
---|---|---|
committer | Tom Rondeau | 2010-12-08 17:26:40 -0500 |
commit | a8f33e1b577342fd8149d9308d474871c44c7d52 (patch) | |
tree | ae5ab258ea0557f7e789ba01e3f344a83ee02cd0 /volk/lib | |
parent | 1cc88091470dd4654b6936cda92d81841e135209 (diff) | |
download | gnuradio-a8f33e1b577342fd8149d9308d474871c44c7d52.tar.gz gnuradio-a8f33e1b577342fd8149d9308d474871c44c7d52.tar.bz2 gnuradio-a8f33e1b577342fd8149d9308d474871c44c7d52.zip |
Removing autotests of volk during make check and distchecks since they take a long time to run.
These can be run by hand by executing volk/lib/test_all
Also made a comment about needing a possible fix for this makefile.
Diffstat (limited to 'volk/lib')
-rw-r--r-- | volk/lib/Makefile.am | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/volk/lib/Makefile.am b/volk/lib/Makefile.am index 7e808695f..a95860d11 100644 --- a/volk/lib/Makefile.am +++ b/volk/lib/Makefile.am @@ -20,6 +20,10 @@ include $(top_srcdir)/Makefile.common +#FIXME: forcing the top_builddir for distcheck seems like a bit +# of a hack. Figure out the right way to do this to find built +# volk_config.h and volk_tables.h + AM_CPPFLAGS = $(STD_DEFINES_AND_INCLUDES) $(CPPUNIT_CPPFLAGS) \ -I$(top_builddir)/include \ $(LV_CXXFLAGS) $(WITH_INCLUDES) @@ -40,7 +44,7 @@ AM_CPPFLAGS = $(STD_DEFINES_AND_INCLUDES) $(CPPUNIT_CPPFLAGS) \ # list of programs run by "make check" and "make distcheck" -TESTS = test_all +#TESTS = test_all lib_LTLIBRARIES = \ |