kselftest: membarrier: make test names more informative

Make membarrier test names more informative.

Signed-off-by: Alice Ferrazzi <alice.ferrazzi@gmail.com>
Signed-off-by: Paul Elder <paul.elder@pitt.edu>
Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
This commit is contained in:
Alice Ferrazzi 2017-06-16 01:19:16 +09:00 committed by Shuah Khan
parent e4d1065b31
commit 34539b6c48

View file

@ -21,7 +21,7 @@ static int sys_membarrier(int cmd, int flags)
static enum test_membarrier_status test_membarrier_cmd_fail(void)
{
int cmd = -1, flags = 0;
const char *test_name = "membarrier command fail";
const char *test_name = "membarrier command cmd=-1. Wrong command should fail";
if (sys_membarrier(cmd, flags) != -1) {
ksft_test_result_fail(test_name);
@ -35,7 +35,7 @@ static enum test_membarrier_status test_membarrier_cmd_fail(void)
static enum test_membarrier_status test_membarrier_flags_fail(void)
{
int cmd = MEMBARRIER_CMD_QUERY, flags = 1;
const char *test_name = "Wrong flags should fail";
const char *test_name = "MEMBARRIER_CMD_QUERY, flags=1, Wrong flags should fail";
if (sys_membarrier(cmd, flags) != -1) {
ksft_test_result_fail(test_name);