aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Guldstrand <andreas.guldstrand@gmail.com>2015-12-14 15:43:27 +0100
committerAndreas Guldstrand <andreas.guldstrand@gmail.com>2015-12-14 15:43:27 +0100
commitdf3205097835c450a28f2a254a93cbf7215cd24c (patch)
treef379501762e2a70abc504a1ebac7f370a035a213
parent020a565f6a41e065c044fa359d4a2d65a09b93d4 (diff)
downloadsbotools2-df3205097835c450a28f2a254a93cbf7215cd24c.tar.xz
Test missing deps in local overrides; see #19
-rw-r--r--t/LO/nonexistentslackbuild2/README1
-rw-r--r--t/LO/nonexistentslackbuild2/nonexistentslackbuild2.SlackBuild7
-rw-r--r--t/LO/nonexistentslackbuild2/nonexistentslackbuild2.info10
-rwxr-xr-xt/travis.sh7
4 files changed, 25 insertions, 0 deletions
diff --git a/t/LO/nonexistentslackbuild2/README b/t/LO/nonexistentslackbuild2/README
new file mode 100644
index 0000000..6d388bb
--- /dev/null
+++ b/t/LO/nonexistentslackbuild2/README
@@ -0,0 +1 @@
+This doesn't exist!
diff --git a/t/LO/nonexistentslackbuild2/nonexistentslackbuild2.SlackBuild b/t/LO/nonexistentslackbuild2/nonexistentslackbuild2.SlackBuild
new file mode 100644
index 0000000..dbae8d5
--- /dev/null
+++ b/t/LO/nonexistentslackbuild2/nonexistentslackbuild2.SlackBuild
@@ -0,0 +1,7 @@
+#!/bin/bash
+PRGNAM="nonexistentslackbuild2"
+VERSION=${VERSION:-1.0}
+BUILD=${BUILD:-1}
+TAG=${TAG:-_SBo}
+OUTPUT=${OUTPUT:-/tmp}
+/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-noarch-$BUILD$TAG.tgz
diff --git a/t/LO/nonexistentslackbuild2/nonexistentslackbuild2.info b/t/LO/nonexistentslackbuild2/nonexistentslackbuild2.info
new file mode 100644
index 0000000..23bc56c
--- /dev/null
+++ b/t/LO/nonexistentslackbuild2/nonexistentslackbuild2.info
@@ -0,0 +1,10 @@
+PRGNAM="nonexistentslackbuild2"
+VERSION="1.0"
+HOMEPAGE="http://www.example.com"
+DOWNLOAD="http://www.pastemobile.org/perf.dummy"
+MD5SUM="9cba6c70fb57a22a155073d54748b614"
+DOWNLOAD_x86_64=""
+MD5SUM_x86_64=""
+REQUIRES="nonexistentslackbuild3"
+MAINTAINER="Andreas Guldstrand"
+EMAIL="doesnt@matter.org"
diff --git a/t/travis.sh b/t/travis.sh
index 0bb31aa..e3cabf4 100755
--- a/t/travis.sh
+++ b/t/travis.sh
@@ -42,3 +42,10 @@ run sbocheck
WC=$(wc -l /var/log/sbocheck.log)
[ "$WC" = "1 /var/log/sbocheck.log" ]
run sboupgrade -r nonexistentslackbuild
+
+# Test missing dep
+(
+ run sboinstall nonexistentslackbuild2 <<END
+y
+END
+) || [ "$?" = "1" ]