Home
last modified time | relevance | path

Searched refs:exp_status (Results 1 – 3 of 3) sorted by relevance

/external/libxml2/python/tests/
Dinput_callback.py47 def run_test(desc, docpath, catalog, exp_status="verified", exp_err=[], test_callback=None, argument
75 if actual_status != exp_status:
76 … print("Test '%s' failed: expect status '%s', actual '%s'" % (desc, exp_status, actual_status))
90 exp_status="not loaded", exp_err=[
100 exp_status="loaded", exp_err=[
113 exp_status="loaded", exp_err=[
121 exp_status="not loaded", exp_err=[
141 exp_status="not loaded", exp_err=[
/external/ltp/testcases/kernel/syscalls/ipc/shmat/
Dshmat01.c55 int exp_status; member
93 static int expected_status(int status, int exp_status) in expected_status() argument
95 if (!exp_status && WIFEXITED(status)) in expected_status()
98 if (exp_status && WIFSIGNALED(status) && WTERMSIG(status) == exp_status) in expected_status()
140 do_child(addr, tc->exp_status == SIGSEGV); in verify_shmat()
144 if (expected_status(status, tc->exp_status)) in verify_shmat()
/external/ltp/testcases/kernel/syscalls/move_pages/
Dmove_pages04.c92 int ret, exp_status; in main() local
95 exp_status = -EFAULT; in main()
97 exp_status = -ENOENT; in main()
138 if (status[UNTOUCHED_PAGE] == exp_status) { in main()
145 tst_strerrno(-exp_status)); in main()