Lines Matching refs:g_assert_cmpint
52 g_assert_cmpint(qos_graph_has_machine(interface), ==, FALSE); in check_interface()
54 g_assert_cmpint(qos_graph_has_node(interface), ==, TRUE); in check_interface()
55 g_assert_cmpint(qos_graph_get_node_type(interface), ==, QNODE_INTERFACE); in check_interface()
57 g_assert_cmpint(qos_graph_get_node_availability(interface), ==, TRUE); in check_interface()
64 g_assert_cmpint(qos_graph_has_machine(machine), ==, TRUE); in check_machine()
66 g_assert_cmpint(qos_graph_get_node_availability(machine), ==, FALSE); in check_machine()
68 g_assert_cmpint(qos_graph_get_node_availability(machine), ==, TRUE); in check_machine()
69 g_assert_cmpint(qos_graph_has_node(machine), ==, TRUE); in check_machine()
70 g_assert_cmpint(qos_graph_get_node_type(machine), ==, QNODE_MACHINE); in check_machine()
80 g_assert_cmpint(qos_graph_edge_get_type(edge), ==, QEDGE_CONTAINS); in check_contains()
81 g_assert_cmpint(qos_graph_has_edge(machine, driver), ==, TRUE); in check_contains()
92 g_assert_cmpint(qos_graph_edge_get_type(edge), ==, in check_produces()
94 g_assert_cmpint(qos_graph_has_edge(machine, interface), ==, TRUE); in check_produces()
105 g_assert_cmpint(qos_graph_edge_get_type(edge), ==, QEDGE_CONSUMED_BY); in check_consumes()
106 g_assert_cmpint(qos_graph_has_edge(interface, driver), ==, TRUE); in check_consumes()
112 g_assert_cmpint(qos_graph_has_machine(driver), ==, FALSE); in check_driver()
114 g_assert_cmpint(qos_graph_has_node(driver), ==, TRUE); in check_driver()
115 g_assert_cmpint(qos_graph_get_node_type(driver), ==, QNODE_DRIVER); in check_driver()
116 g_assert_cmpint(qos_graph_get_node_availability(driver), ==, FALSE); in check_driver()
118 g_assert_cmpint(qos_graph_get_node_availability(driver), ==, TRUE); in check_driver()
127 g_assert_cmpint(qos_graph_has_machine(test), ==, FALSE); in check_test()
128 g_assert_cmpint(qos_graph_has_machine(full_name), ==, FALSE); in check_test()
130 g_assert_cmpint(qos_graph_has_node(full_name), ==, TRUE); in check_test()
131 g_assert_cmpint(qos_graph_get_node_type(full_name), ==, QNODE_TEST); in check_test()
134 g_assert_cmpint(qos_graph_edge_get_type(edge), ==, in check_test()
136 g_assert_cmpint(qos_graph_has_edge(interface, full_name), ==, TRUE); in check_test()
137 g_assert_cmpint(qos_graph_get_node_availability(full_name), ==, TRUE); in check_test()
139 g_assert_cmpint(qos_graph_get_node_availability(full_name), ==, FALSE); in check_test()
152 g_assert_cmpint(n, ==, npath); in check_leaf_discovered()