summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPanu Matilainen <pmatilai@redhat.com>2008-11-22 13:26:43 +0200
committerPanu Matilainen <pmatilai@redhat.com>2008-11-22 13:26:43 +0200
commit4ba4e709efd8f88a7bb5a0db8121f57c937615d9 (patch)
treef4f686da9838ba2a787b46bf9c59ea574d42ec58
parent19a41acb84dcb3c5e6381199f8385bfa4e48e803 (diff)
downloadrpm-4ba4e709efd8f88a7bb5a0db8121f57c937615d9.tar.gz
rpm-4ba4e709efd8f88a7bb5a0db8121f57c937615d9.tar.bz2
rpm-4ba4e709efd8f88a7bb5a0db8121f57c937615d9.zip
Add banners for nicer test output
-rw-r--r--tests/rpmbuild.at2
-rw-r--r--tests/rpmconfig.at2
-rw-r--r--tests/rpmconflict.at4
-rw-r--r--tests/rpmdb.at1
-rw-r--r--tests/rpmgeneral.at2
-rw-r--r--tests/rpmi.at2
-rw-r--r--tests/rpmmacro.at1
-rw-r--r--tests/rpmquery.at2
-rw-r--r--tests/rpmtests.at16
-rw-r--r--tests/rpmvercmp.at2
10 files changed, 25 insertions, 9 deletions
diff --git a/tests/rpmbuild.at b/tests/rpmbuild.at
index 0d26b69fa..aa67e3788 100644
--- a/tests/rpmbuild.at
+++ b/tests/rpmbuild.at
@@ -16,6 +16,8 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+AT_BANNER([RPM build])
+
# ------------------------------
# Check if rpmbuild -ba *.spec works
AT_SETUP([rpmbuild -ba *.spec])
diff --git a/tests/rpmconfig.at b/tests/rpmconfig.at
index db16307e6..6f33f9405 100644
--- a/tests/rpmconfig.at
+++ b/tests/rpmconfig.at
@@ -1,5 +1,7 @@
# rpmvercmp.at: rpm config file behavior tests
+AT_BANNER([RPM config file behavior])
+
# ------------------------------
# (Build and) upgrade package with config file, no backup here
AT_SETUP([rpm -U to package with unchanged config file])
diff --git a/tests/rpmconflict.at b/tests/rpmconflict.at
index 5b72c89c5..a846d7bc4 100644
--- a/tests/rpmconflict.at
+++ b/tests/rpmconflict.at
@@ -1,4 +1,6 @@
-# rpmvercmp.at: rpm version comparison tests
+# rpmconflict.at: rpm file conflict tests
+
+AT_BANNER([RPM file conflicts])
# ------------------------------
# (Build and) install conflicting package (should fail)
diff --git a/tests/rpmdb.at b/tests/rpmdb.at
index 9da741b9e..3180538d6 100644
--- a/tests/rpmdb.at
+++ b/tests/rpmdb.at
@@ -16,6 +16,7 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+AT_BANNER([RPM database access])
# ------------------------------
# Attempt to initialize a rpmdb
diff --git a/tests/rpmgeneral.at b/tests/rpmgeneral.at
index fbe267ea3..bc0d93b20 100644
--- a/tests/rpmgeneral.at
+++ b/tests/rpmgeneral.at
@@ -16,6 +16,8 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+AT_BANNER([Basic tests])
+
# ------------------------------
AT_SETUP([rpm --version])
AT_CHECK([run rpm --version],[0],
diff --git a/tests/rpmi.at b/tests/rpmi.at
index 4ed4a9c15..fd8babae4 100644
--- a/tests/rpmi.at
+++ b/tests/rpmi.at
@@ -16,6 +16,8 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+AT_BANNER([RPM install tests])
+
# ------------------------------
# Check if rpm -U *.src.rpm works
AT_SETUP([rpm -U *.src.rpm])
diff --git a/tests/rpmmacro.at b/tests/rpmmacro.at
index 5e66104c1..0d213427d 100644
--- a/tests/rpmmacro.at
+++ b/tests/rpmmacro.at
@@ -1,5 +1,6 @@
# rpmmacro.at: test rpm macros
#
+AT_BANNER([RPM macros])
# ------------------------------
AT_SETUP([simple rpm --eval])
diff --git a/tests/rpmquery.at b/tests/rpmquery.at
index f450f1c7d..cc2bf8214 100644
--- a/tests/rpmquery.at
+++ b/tests/rpmquery.at
@@ -16,6 +16,8 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+AT_BANNER([RPM queries])
+
# ------------------------------
AT_SETUP([rpm --qf -p *.i386.rpm])
AT_CHECK([
diff --git a/tests/rpmtests.at b/tests/rpmtests.at
index 87a86b44f..37c7ec4ed 100644
--- a/tests/rpmtests.at
+++ b/tests/rpmtests.at
@@ -1,9 +1,9 @@
-#m4_include([rpmgeneral.at])
-#m4_include([rpmquery.at])
-#m4_include([rpmdb.at])
-#m4_include([rpmi.at])
-#m4_include([rpmbuild.at])
-#m4_include([rpmvercmp.at])
-#m4_include([rpmconflict.at])
-#m4_include([rpmconfig.at])
+m4_include([rpmgeneral.at])
+m4_include([rpmquery.at])
+m4_include([rpmdb.at])
+m4_include([rpmi.at])
+m4_include([rpmbuild.at])
+m4_include([rpmvercmp.at])
+m4_include([rpmconflict.at])
+m4_include([rpmconfig.at])
m4_include([rpmmacro.at])
diff --git a/tests/rpmvercmp.at b/tests/rpmvercmp.at
index 08b8df8a7..a125f3acd 100644
--- a/tests/rpmvercmp.at
+++ b/tests/rpmvercmp.at
@@ -1,5 +1,7 @@
# rpmvercmp.at: rpm version comparison tests
+AT_BANNER([RPM version comparison])
+
# ------------------------------
# Test normal upgrade
AT_SETUP([rpm -U upgrade to newer])