From da237313b4c42b5e19e73594c2e909547af782de Mon Sep 17 00:00:00 2001 From: Kshitij Bansal Date: Fri, 21 Feb 2014 10:09:00 -0500 Subject: [PATCH] disable test cvc3_main, attempt to fix dist_check --- src/Makefile.am | 10 +++++++--- src/theory/sets/Makefile | 4 ---- src/theory/sets/Makefile.am | 20 -------------------- test/system/Makefile.am | 4 ++-- 4 files changed, 9 insertions(+), 29 deletions(-) delete mode 100644 src/theory/sets/Makefile delete mode 100644 src/theory/sets/Makefile.am diff --git a/src/Makefile.am b/src/Makefile.am index 86067d3ef..279e52e09 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -220,12 +220,16 @@ libcvc4_la_SOURCES = \ theory/datatypes/theory_datatypes.h \ theory/datatypes/datatypes_rewriter.h \ theory/datatypes/theory_datatypes.cpp \ - theory/sets/theory_sets.h \ + theory/sets/expr_patterns.h \ + theory/sets/options_handlers.h \ + theory/sets/term_info.h \ theory/sets/theory_sets.cpp \ - theory/sets/theory_sets_private.h \ + theory/sets/theory_sets.h \ theory/sets/theory_sets_private.cpp \ - theory/sets/theory_sets_rewriter.h \ + theory/sets/theory_sets_private.h \ theory/sets/theory_sets_rewriter.cpp \ + theory/sets/theory_sets_rewriter.h \ + theory/sets/theory_sets_type_enumerator.h \ theory/sets/theory_sets_type_rules.h \ theory/strings/theory_strings.h \ theory/strings/theory_strings.cpp \ diff --git a/src/theory/sets/Makefile b/src/theory/sets/Makefile deleted file mode 100644 index 68a2c5cb6..000000000 --- a/src/theory/sets/Makefile +++ /dev/null @@ -1,4 +0,0 @@ -topdir = ../../.. -srcdir = src/theory/sets - -include $(topdir)/Makefile.subdir diff --git a/src/theory/sets/Makefile.am b/src/theory/sets/Makefile.am deleted file mode 100644 index 00678628f..000000000 --- a/src/theory/sets/Makefile.am +++ /dev/null @@ -1,20 +0,0 @@ -AM_CPPFLAGS = \ - -D__BUILDING_CVC4LIB \ - -I@builddir@/../.. -I@srcdir@/../../include -I@srcdir@/../.. -AM_CXXFLAGS = -Wall -Wno-unknown-pragmas $(FLAG_VISIBILITY_HIDDEN) - -noinst_LTLIBRARIES = libsets.la - -libsets_la_SOURCES = \ - theory_sets.h \ - theory_sets.cpp \ - theory_sets_private.h \ - theory_sets_private.cpp \ - theory_sets_rewriter.h \ - theory_sets_rewriter.cpp \ - theory_sets_type_rules.h \ - theory_set_type_enumerator.h - -EXTRA_DIST = \ - kinds \ - options_handlers.h diff --git a/test/system/Makefile.am b/test/system/Makefile.am index 90867abc9..0306afa68 100644 --- a/test/system/Makefile.am +++ b/test/system/Makefile.am @@ -8,8 +8,8 @@ CPLUSPLUS_TESTS = \ statistics if CVC4_BUILD_LIBCOMPAT -CPLUSPLUS_TESTS += \ - cvc3_main +#CPLUSPLUS_TESTS += \ +# cvc3_main endif TESTS = $(CPLUSPLUS_TESTS) -- 2.30.2