diff options
author | Aníbal Limón <limon.anibal@gmail.com> | 2015-07-08 18:34:20 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-07-12 22:50:43 +0100 |
commit | 73b9cd9764c9838913c7c57eec220e4176ed2b7d (patch) | |
tree | 1d41ff496b564b89b36b200750431aa0d28c991b /bitbake/lib/bb/tests | |
parent | 804f1a2312f85125c83e2dae2af69abdd7ef7681 (diff) | |
download | poky-73b9cd9764c9838913c7c57eec220e4176ed2b7d.tar.gz |
bitbake: tests/fetch.py: FetchCheckStatusTest add cases for ftp and https.
(Bitbake rev: 36f2577d075f87090766877473f9030e44a941a2)
Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/tests')
-rw-r--r-- | bitbake/lib/bb/tests/fetch.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/bitbake/lib/bb/tests/fetch.py b/bitbake/lib/bb/tests/fetch.py index 1132af5b21..13555bd677 100644 --- a/bitbake/lib/bb/tests/fetch.py +++ b/bitbake/lib/bb/tests/fetch.py | |||
@@ -719,8 +719,14 @@ class FetchCheckStatusTest(FetcherTest): | |||
719 | "http://downloads.yoctoproject.org/releases/sato/sato-engine-0.1.tar.gz", | 719 | "http://downloads.yoctoproject.org/releases/sato/sato-engine-0.1.tar.gz", |
720 | "http://downloads.yoctoproject.org/releases/sato/sato-engine-0.2.tar.gz", | 720 | "http://downloads.yoctoproject.org/releases/sato/sato-engine-0.2.tar.gz", |
721 | "http://downloads.yoctoproject.org/releases/sato/sato-engine-0.3.tar.gz", | 721 | "http://downloads.yoctoproject.org/releases/sato/sato-engine-0.3.tar.gz", |
722 | "https://yoctoproject.org/", | ||
723 | "https://yoctoproject.org/documentation", | ||
722 | "http://downloads.yoctoproject.org/releases/opkg/opkg-0.1.7.tar.gz", | 724 | "http://downloads.yoctoproject.org/releases/opkg/opkg-0.1.7.tar.gz", |
723 | "http://downloads.yoctoproject.org/releases/opkg/opkg-0.3.0.tar.gz"] | 725 | "http://downloads.yoctoproject.org/releases/opkg/opkg-0.3.0.tar.gz", |
726 | "ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz", | ||
727 | "ftp://ftp.gnu.org/gnu/chess/gnuchess-5.08.tar.gz", | ||
728 | "ftp://ftp.gnu.org/gnu/gmp/gmp-4.0.tar.gz", | ||
729 | ] | ||
724 | 730 | ||
725 | if os.environ.get("BB_SKIP_NETTESTS") == "yes": | 731 | if os.environ.get("BB_SKIP_NETTESTS") == "yes": |
726 | print("Unset BB_SKIP_NETTESTS to run network tests") | 732 | print("Unset BB_SKIP_NETTESTS to run network tests") |