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:
Christopher Collins 2018-04-30 17:04:06 -07:00 committed by Fabio Utzig
parent 0319cf1c8d
commit 2844faaccc
2 changed files with 5 additions and 5 deletions

View File

@ -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"

View File

@ -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"