selftests: forwarding: Use OK instead of PASS in test output
authorIdo Schimmel <[email protected]>
Mon, 28 Jan 2019 12:02:13 +0000 (12:02 +0000)
committerDavid S. Miller <[email protected]>
Mon, 28 Jan 2019 18:43:15 +0000 (10:43 -0800)
It is easier to distinguish "[ OK ]" from "[FAIL]" than "[PASS]".

Signed-off-by: Ido Schimmel <[email protected]>
Suggested-by: David Ahern <[email protected]>
Cc: David Ahern <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
tools/testing/selftests/net/forwarding/lib.sh

index 3f248d1f5b91a5ffef252949921a3791b5b2b6b1..c1f16bb992dc6370aa142125752ba4a31c806270 100644 (file)
@@ -211,7 +211,7 @@ log_test()
                return 1
        fi
 
-       printf "TEST: %-60s  [PASS]\n" "$test_name $opt_str"
+       printf "TEST: %-60s  [ OK ]\n" "$test_name $opt_str"
        return 0
 }