diff options
author | Gustavo Padovan <gustavo.padovan@collabora.com> | 2016-12-13 11:48:49 -0200 |
---|---|---|
committer | Shuah Khan <shuahkh@osg.samsung.com> | 2016-12-13 07:24:34 -0700 |
commit | 981c3db62e2d2dfb0c5725dd55d8c3cf8ed4edd8 (patch) | |
tree | fb7d9a69e45176549e8b8425613d2e7f377cd70a /tools/testing | |
parent | kselftests: Exercise hw-independent mock tests for i915.ko (diff) | |
download | wireguard-linux-981c3db62e2d2dfb0c5725dd55d8c3cf8ed4edd8.tar.xz wireguard-linux-981c3db62e2d2dfb0c5725dd55d8c3cf8ed4edd8.zip |
selftest: sync: improve assert() failure message
Print "ERROR" on all messages instead of using the not well defined terms
like "BAD".
Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.com>
Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
Diffstat (limited to '')
-rw-r--r-- | tools/testing/selftests/sync/synctest.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/sync/synctest.h b/tools/testing/selftests/sync/synctest.h index 4e0e59f6fcf3..e7d1d57dba7a 100644 --- a/tools/testing/selftests/sync/synctest.h +++ b/tools/testing/selftests/sync/synctest.h @@ -32,7 +32,7 @@ #define ASSERT(cond, msg) do { \ if (!(cond)) { \ - printf("[BAD]\t%s", (msg)); \ + printf("[ERROR]\t%s", (msg)); \ return 1; \ } \ } while (0) |