Inverse the fail/pass logic 49/22649/1
authorKhouloud Touil <ktouil@baylibre.com>
Tue, 15 Oct 2019 14:54:15 +0000 (16:54 +0200)
committerKhouloud Touil <ktouil@baylibre.com>
Tue, 15 Oct 2019 14:54:15 +0000 (16:54 +0200)
This test should be failing, so it should be set to pass when it
fails, and should be set to fail when it passes.

AGL-bug: SPEC-2878

Change-Id: I43921717eea77d654921eca4691c936bb2901e54
Signed-off-by: Khouloud Touil <ktouil@baylibre.com>
common/scripts/test_can_bitrate.sh

index 2461fa0..3a8f225 100755 (executable)
@@ -69,9 +69,9 @@ for b in `seq 778 790`;do
                candump can1 > $file_can &
                sleep 3
                if [ -s $file_can ];then
-                       lava-test-case can1_xfer_config_range_start --result pass --measurement $b --units bit/s
-               else
                        lava-test-case can1_xfer_config_range_start --result fail --measurement $b --units bit/s
+               else
+                       lava-test-case can1_xfer_config_range_start --result pass --measurement $b --units bit/s
                        sleep 2
                        echo "This bitrate $b belongs to the domain but doesn't provide frames transmission"
                fi