Mynewt unit tests - Add repo prefix to dep lists.
The unit tests depend on a few Mynewt packages (`test/testutil` and `sys/console/stub`). If there is no repo prefix in the dependency specifier, newt assumes the package is in the local repo (mcuboot)`. This commit adds the `@apache-mynewt-core/` prefix to these dependencies. Signed-off-by: Christopher Collins <ccollins@apache.org>
This commit is contained in:
parent
0319cf1c8d
commit
2844faaccc
|
@ -24,7 +24,7 @@ pkg.keywords:
|
||||||
|
|
||||||
pkg.deps:
|
pkg.deps:
|
||||||
- "@mcuboot/boot/boot_serial"
|
- "@mcuboot/boot/boot_serial"
|
||||||
- test/testutil
|
- "@apache-mynewt-core/test/testutil"
|
||||||
|
|
||||||
pkg.deps.SELFTEST:
|
pkg.deps.SELFTEST:
|
||||||
- sys/console/stub
|
- "@apache-mynewt-core/sys/console/stub"
|
||||||
|
|
|
@ -23,8 +23,8 @@ pkg.homepage: "http://mynewt.apache.org/"
|
||||||
pkg.keywords:
|
pkg.keywords:
|
||||||
|
|
||||||
pkg.deps:
|
pkg.deps:
|
||||||
- boot/bootutil
|
- "@mcuboot/boot/bootutil"
|
||||||
- test/testutil
|
- "@apache-mynewt-core/test/testutil"
|
||||||
|
|
||||||
pkg.deps.SELFTEST:
|
pkg.deps.SELFTEST:
|
||||||
- sys/console/stub
|
- "@apache-mynewt-core/sys/console/stub"
|
||||||
|
|
Loading…
Reference in New Issue