summaryrefslogtreecommitdiff
path: root/tests/rpmbuild.at
diff options
context:
space:
mode:
Diffstat (limited to 'tests/rpmbuild.at')
-rw-r--r--tests/rpmbuild.at30
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/rpmbuild.at b/tests/rpmbuild.at
index 4a672b2b0..0d26b69fa 100644
--- a/tests/rpmbuild.at
+++ b/tests/rpmbuild.at
@@ -83,3 +83,33 @@ run rpmbuild \
[ignore],
[ignore])
AT_CLEANUP
+
+# ------------------------------
+# Check if tar unpacking works
+AT_SETUP([rpmbuild -tb <tar with bad spec>])
+AT_CHECK([
+rm -rf ${TOPDIR}
+
+run rpmbuild \
+ -tb "${RPMDATA}/SOURCES/hello-1.0.tar.gz"
+],
+[1],
+[ignore],
+[error: line 5: Unknown tag: Serial: 1
+])
+AT_CLEANUP
+
+# ------------------------------
+# Check if tar build works
+# TODO: test that the rpms are actually created...
+AT_SETUP([rpmbuild -tb])
+AT_CHECK([
+rm -rf ${TOPDIR}
+
+run rpmbuild \
+ -ta "${RPMDATA}/SOURCES/hello-2.0.tar.gz"
+],
+[0],
+[ignore],
+[ignore])
+AT_CLEANUP