WLAN-Pi / wlanpi-hwtest

hwtest drives a suite of tests to determine diagnostic health for WLAN Pi Pro hardware.
Other
1 stars 0 forks source link

VL805_FW test failing even though it is true #30

Closed jolla closed 2 years ago

jolla commented 2 years ago
_____________________________________________________________________________________________ test_vl805_fw ______________________________________________________________________________________________

    def test_vl805_fw():
        """
        Test: sudo vl805

        Description vl805 is a binary which outputs the version of FW for the VL805 USB 3 Controller

        Expects: VL805 FW version: 000138a1
        """
        if shutil.which("vl805") is not None:
            resp = run_command(["vl805"])

            assert "000138a1" in resp
>       assert False
E       assert False

/opt/wlanpi-hwtest/lib/python3.9/site-packages/hwtest/automated/vl805fw_test.py:18: AssertionError
wlanpi@wlanpi:~ $ sudo vl805 
VL805 FW version: 000138a1
joshschmelzle commented 2 years ago

Fixed in 4b944dca9e2b550fc0b4241d8aa3be1074e0a0f0 which is currently in the vl805 branch. Will link PR once created.