OSDN Git Service

selftests: forwarding: Use OK instead of PASS in test output
authorIdo Schimmel <idosch@mellanox.com>
Mon, 28 Jan 2019 12:02:13 +0000 (12:02 +0000)
committerDavid S. Miller <davem@davemloft.net>
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 <idosch@mellanox.com>
Suggested-by: David Ahern <dsahern@gmail.com>
Cc: David Ahern <dsahern@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
tools/testing/selftests/net/forwarding/lib.sh

index 3f248d1..c1f16bb 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
 }