autotest support files.
authorRalf Corsépius <corsepiu@fedoraproject.org>
Mon, 20 Aug 2007 10:37:21 +0000 (12:37 +0200)
committerRalf Corsépius <corsepiu@fedoraproject.org>
Mon, 20 Aug 2007 10:37:21 +0000 (12:37 +0200)
tests/rpmgeneral.at [new file with mode: 0644]

diff --git a/tests/rpmgeneral.at b/tests/rpmgeneral.at
new file mode 100644 (file)
index 0000000..77ba2bd
--- /dev/null
@@ -0,0 +1,49 @@
+#    rpmgeneral.at
+#
+#    Copyright (C) 2007  Ralf Corsépius <corsepiu@fedoraproject.org>
+#
+#    This program is free software; you can redistribute it and/or modify
+#    it under the terms of the GNU General Public License as published by
+#    the Free Software Foundation; either version 2 of the License, or
+#    (at your option) any later version.
+#
+#    This program is distributed in the hope that it will be useful,
+#    but WITHOUT ANY WARRANTY; without even the implied warranty of
+#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#    GNU General Public License for more details.
+#
+#    You should have received a copy of the GNU General Public License
+#    along with this program; if not, write to the Free Software
+#    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+
+AT_SETUP([rpm --version])
+AT_CHECK([rpm --version],[0],
+[RPM version AT_PACKAGE_VERSION
+])
+AT_CLEANUP
+
+
+AT_SETUP([rpmbuild --version])
+AT_CHECK([rpmbuild --version],[0],
+[RPM version AT_PACKAGE_VERSION
+])
+AT_CLEANUP
+
+
+AT_SETUP([rpmquery --version])
+AT_CHECK([rpm --version],[0],
+[RPM version AT_PACKAGE_VERSION
+])
+AT_CLEANUP
+
+
+AT_SETUP([rpm --showrc])
+AT_CHECK([rpm --rcfile=${RPMRC} --showrc],[0],
+[ignore])
+AT_CLEANUP
+
+
+AT_SETUP([rpm --querytags works])
+AT_CHECK([rpm --querytags],[0],
+[ignore])
+AT_CLEANUP