move *.cc files one level down
authorKlaus Kaempf <kkaempf@suse.de>
Mon, 23 Jan 2006 16:27:55 +0000 (16:27 +0000)
committerKlaus Kaempf <kkaempf@suse.de>
Mon, 23 Jan 2006 16:27:55 +0000 (16:27 +0000)
testsuite/solver/Makefile.am
testsuite/solver/solver.test/multi_test.exp
testsuite/solver/solver.test/single_test.exp
testsuite/solver/src/Makefile.am [new file with mode: 0644]
testsuite/solver/src/deptestomatic.cc [moved from testsuite/solver/deptestomatic.cc with 100% similarity]
testsuite/solver/src/utils_single.cc [moved from testsuite/solver/utils_single.cc with 100% similarity]

index 0e01db1..0f16c07 100644 (file)
@@ -1,24 +1,10 @@
 #
 # Makefile.am for zypp/solver/testsuite
 #
-SUBDIRS = single.out
+SUBDIRS = src single.out
 AUTOMAKE_OPTIONS = dejagnu
 PACKAGE = solver
 
-INCLUDES = -I/usr/include/libxml2
-LDADD =        $(top_srcdir)/zypp/lib@PACKAGE@.la
-
-# We're not ready for this yet.
-#check_PROGRAMS = deptestomatic.multi
-noinst_PROGRAMS = utils.single                         \
-               deptestomatic.multi
-
-utils_single_SOURCES =                                 \
-       utils_single.cc
-
-deptestomatic_multi_SOURCES =                          \
-       deptestomatic.cc
-
 EXTRA_DIST = config/*.exp                              \
            lib/*.exp                                   \
            $(PACKAGE).test/*.exp                       \
index 4b88d33..d938c97 100644 (file)
@@ -25,7 +25,7 @@
 # are expected to fail
 #
 #
-if { [catch {  set filenames [glob $srcdir/*.multi] } ] } {
+if { [catch {  set filenames [glob $srcdir/src/*.multi] } ] } {
     puts "No .multi files found"
 } else {
     # foreach file, call multi-run (from testsuite/lib)
index 46551b7..f44d531 100644 (file)
@@ -7,7 +7,7 @@
 
 # get all files matching *.single
 
-if { [catch {  set filenames [glob $srcdir/*.single] } ] } {
+if { [catch {  set filenames [glob $srcdir/src/*.single] } ] } {
     puts "No .single files found"
 } else {
     # foreach file, call single-run (from testsuite/lib)
diff --git a/testsuite/solver/src/Makefile.am b/testsuite/solver/src/Makefile.am
new file mode 100644 (file)
index 0000000..ae6bde4
--- /dev/null
@@ -0,0 +1,19 @@
+#
+# Makefile.am for zypp/solver/testsuite/src
+#
+
+#SUBDIRS = helix
+
+INCLUDES = -I/usr/include/libxml2
+LDADD =        $(top_srcdir)/zypp/lib@PACKAGE@.la
+
+# We're not ready for this yet.
+#check_PROGRAMS = deptestomatic.multi
+noinst_PROGRAMS = utils.single                         \
+               deptestomatic.multi
+
+utils_single_SOURCES =                                 \
+       utils_single.cc
+
+deptestomatic_multi_SOURCES =                          \
+       deptestomatic.cc