31 lines
751 B
Bash
Executable File
31 lines
751 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
# This test is designed such that a Bluetooth controller is not required but we
|
|
# can at least check to make sure the commands are installed correctly
|
|
|
|
# Is bluemoon present and doesn't fail if called
|
|
bluemoon --help
|
|
|
|
# Is bluetoothctl present and doesn't fail if called
|
|
# FIXME: https://issues.redhat.com/browse/RHEL-56073
|
|
# bluetoothctl --help
|
|
|
|
# Is btattach present and doesn't fail if called
|
|
btattach --version
|
|
|
|
# Is btmgmt present and doesn't fail if called
|
|
# FIXME: https://issues.redhat.com/browse/RHEL-56073
|
|
# btmgmt --help
|
|
|
|
# Is btmon present and doesn't fail if called
|
|
btmon --help
|
|
|
|
# Is hex2hcd present and doesn't fail if called
|
|
hex2hcd --help
|
|
|
|
# Is mpris-proxy present and doesn't fail if called
|
|
mpris-proxy --help
|
|
|