Lines Matching refs:result
22 // Manual test result
24 // hdc shell test result
35 char *result;
37 result = getcwd(buf, sizeof(buf));
39 if (!(strcmp(result, manual) ^ strcmp(result, hdc_auto))) {
40 t_error("%s getcwd failed, except result is %s when manual or %s when hdc test\n", __func__, manual, hdc_auto);
51 char *result;
52 result = getcwd(NULL, 200);
53 if (!(strcmp(result, manual) ^ strcmp(result, hdc_auto))) {
54 t_error("%s getcwd failed, except result is %s when manual or %s when hdc test\n", __func__, manual, hdc_auto);
65 char *result;
67 result = getcwd(buf, 0);
68 if (result) {
69 t_error("%s getcwd should failed, the result should be null\n", __func__);