Lines Matching full:priority
27 int priority; in TEST_IMPL() local
45 set this specific priority. */ in TEST_IMPL()
50 ASSERT_OK(uv_os_getpriority(0, &priority)); in TEST_IMPL()
52 /* Verify that the priority values match on Unix, and are range mapped in TEST_IMPL()
55 ASSERT_EQ(priority, i); in TEST_IMPL()
60 ASSERT(priority == UV_PRIORITY_HIGHEST || priority == UV_PRIORITY_HIGH); in TEST_IMPL()
62 ASSERT_EQ(priority, UV_PRIORITY_HIGH); in TEST_IMPL()
64 ASSERT_EQ(priority, UV_PRIORITY_ABOVE_NORMAL); in TEST_IMPL()
66 ASSERT_EQ(priority, UV_PRIORITY_NORMAL); in TEST_IMPL()
68 ASSERT_EQ(priority, UV_PRIORITY_BELOW_NORMAL); in TEST_IMPL()
70 ASSERT_EQ(priority, UV_PRIORITY_LOW); in TEST_IMPL()
75 ASSERT_EQ(priority, r); in TEST_IMPL()