Vendor Command + HID fix (#618)

* Fixes CBOR message passing through Vendor HID

I did all my tests on hardware with this fix, and now I'm surprised that
it didn't end up on develop. So should have been part of a former PR.

* vendor channel test

* forward vendor HID correctly for upgrades

* fixes cargo fmt

* removes script and updates documentation to match
This commit is contained in:
kaczmarczyck
2023-04-26 14:59:22 +02:00
committed by GitHub
parent bcd382e5e9
commit 645c1ba3a7
4 changed files with 28 additions and 41 deletions

View File

@@ -105,23 +105,23 @@ if [ -z "${TRAVIS_OS_NAME}" -o "${TRAVIS_OS_NAME}" = "linux" ]
then
echo "Running unit tests on the desktop (release mode)..."
cargo test --release --features std
cargo test --release --all-features
cd libraries/cbor
cargo test --release
cd ../..
cd libraries/persistent_store
cargo test --release --features std
cd ../..
cargo test --release --features std
echo "Running unit tests on the desktop (debug mode)..."
cargo test --features std
cargo test --release --all-features
cd libraries/cbor
cargo test
cd ../..
cd libraries/persistent_store
cargo test --features std
cd ../..
cargo test --features std
cd libraries/opensk
echo "Running CTAP library unit tests (release mode)..."