Lines Matching refs:result
112 int result = TC_PASS; in test_1_and_2() local
123 result = TC_FAIL; in test_1_and_2()
127 result = check_result(1, ciphertext, sizeof(encrypted), encrypted, in test_1_and_2()
129 TC_END_RESULT(result); in test_1_and_2()
141 result = TC_FAIL; in test_1_and_2()
145 result = check_result(2, plaintext, sizeof(decrypted), decrypted, in test_1_and_2()
149 TC_END_RESULT(result); in test_1_and_2()
150 return result; in test_1_and_2()
158 int result = TC_PASS; in main() local
163 result = test_1_and_2(); in main()
164 if (result == TC_FAIL) { in main()
173 TC_END_RESULT(result); in main()
174 TC_END_REPORT(result); in main()
176 return result; in main()