diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2017-12-07 23:03:40 +1300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-12-10 22:45:20 +0000 |
commit | 6ef6326b37550380a3467720c0771f718e35006b (patch) | |
tree | 6a16a91206bc9800b67349b2d2f30e4bbe509780 /meta-selftest/recipes-test/devtool | |
parent | 26e6edfb7bc5b7da2e8c6b3ef130cc432a614ad9 (diff) | |
download | poky-6ef6326b37550380a3467720c0771f718e35006b.tar.gz |
oe-selftest: devtool: fix test for changes in lzo recipe
acinclude.m4 is about to be removed from the lzo recipe which breaks
test_devtool_update_recipe_local_files_2. Create a synthetic recipe in
meta-selftest with some local files and use that instead.
(From OE-Core rev: ed27470fa6a9f3cc1a0eb884474fe7985babde7a)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-selftest/recipes-test/devtool')
3 files changed, 17 insertions, 0 deletions
diff --git a/meta-selftest/recipes-test/devtool/devtool-test-local/file1 b/meta-selftest/recipes-test/devtool/devtool-test-local/file1 new file mode 100644 index 0000000000..f4bdcfc831 --- /dev/null +++ b/meta-selftest/recipes-test/devtool/devtool-test-local/file1 | |||
@@ -0,0 +1 @@ | |||
The first file | |||
diff --git a/meta-selftest/recipes-test/devtool/devtool-test-local/file2 b/meta-selftest/recipes-test/devtool/devtool-test-local/file2 new file mode 100644 index 0000000000..a7e2414bd5 --- /dev/null +++ b/meta-selftest/recipes-test/devtool/devtool-test-local/file2 | |||
@@ -0,0 +1 @@ | |||
The second file | |||
diff --git a/meta-selftest/recipes-test/devtool/devtool-test-local_6.03.bb b/meta-selftest/recipes-test/devtool/devtool-test-local_6.03.bb new file mode 100644 index 0000000000..6bfc557060 --- /dev/null +++ b/meta-selftest/recipes-test/devtool/devtool-test-local_6.03.bb | |||
@@ -0,0 +1,15 @@ | |||
1 | LICENSE = "GPLv2+" | ||
2 | LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3" | ||
3 | |||
4 | INHIBIT_DEFAULT_DEPS = "1" | ||
5 | |||
6 | SRC_URI = "http://downloads.yoctoproject.org/mirror/sources/syslinux-${PV}.tar.xz \ | ||
7 | file://file1 \ | ||
8 | file://file2" | ||
9 | |||
10 | SRC_URI[md5sum] = "92a253df9211e9c20172796ecf388f13" | ||
11 | SRC_URI[sha256sum] = "26d3986d2bea109d5dc0e4f8c4822a459276cf021125e8c9f23c3cca5d8c850e" | ||
12 | |||
13 | S = "${WORKDIR}/syslinux-${PV}" | ||
14 | |||
15 | EXCLUDE_FROM_WORLD = "1" | ||