Lines Matching refs:answers
18 int *answers; in damon_dbgfs_test_str_to_ints() local
23 answers = str_to_ints(question, strlen(question), &nr_integers); in damon_dbgfs_test_str_to_ints()
25 KUNIT_EXPECT_EQ(test, 123, answers[0]); in damon_dbgfs_test_str_to_ints()
26 kfree(answers); in damon_dbgfs_test_str_to_ints()
29 answers = str_to_ints(question, strlen(question), &nr_integers); in damon_dbgfs_test_str_to_ints()
31 KUNIT_EXPECT_EQ(test, 123, answers[0]); in damon_dbgfs_test_str_to_ints()
32 kfree(answers); in damon_dbgfs_test_str_to_ints()
35 answers = str_to_ints(question, strlen(question), &nr_integers); in damon_dbgfs_test_str_to_ints()
37 kfree(answers); in damon_dbgfs_test_str_to_ints()
40 answers = str_to_ints(question, strlen(question), &nr_integers); in damon_dbgfs_test_str_to_ints()
43 KUNIT_EXPECT_EQ(test, expected[i], answers[i]); in damon_dbgfs_test_str_to_ints()
44 kfree(answers); in damon_dbgfs_test_str_to_ints()
47 answers = str_to_ints(question, strlen(question), &nr_integers); in damon_dbgfs_test_str_to_ints()
50 KUNIT_EXPECT_EQ(test, expected[i], answers[i]); in damon_dbgfs_test_str_to_ints()
51 kfree(answers); in damon_dbgfs_test_str_to_ints()
54 answers = str_to_ints(question, strlen(question), &nr_integers); in damon_dbgfs_test_str_to_ints()
57 KUNIT_EXPECT_EQ(test, expected[i], answers[i]); in damon_dbgfs_test_str_to_ints()
58 kfree(answers); in damon_dbgfs_test_str_to_ints()
61 answers = str_to_ints(question, strlen(question), &nr_integers); in damon_dbgfs_test_str_to_ints()
63 kfree(answers); in damon_dbgfs_test_str_to_ints()
66 answers = str_to_ints(question, strlen(question), &nr_integers); in damon_dbgfs_test_str_to_ints()
68 kfree(answers); in damon_dbgfs_test_str_to_ints()