Lines Matching defs:result
30 long result = ulimit(cmd, MAX_FILE_SIZE);
31 if (result < 0) {
32 EXPECT_PTRNE("ulimit_0100", result, 0);
36 EXPECT_LONGEQ("ulimit_0100", MAX_FILE_SIZE, result);
47 long result = ulimit(cmd);
48 if (result < 0) {
49 EXPECT_PTRNE("ulimit_0200", result, 0);
53 EXPECT_LONGEQ("ulimit_0200", MAX_FILE_SIZE, result);
64 long result = ulimit(cmd, -1);
65 if (result >= 0) {
66 EXPECT_PTRNE("ulimit_0300", result, 0);
70 EXPECT_LONGEQ("ulimit_0300", -1, result);