Home
last modified time | relevance | path

Searched refs:expected_output (Results 1 – 9 of 9) sorted by relevance

/openbmc/linux/tools/testing/selftests/bpf/prog_tests/
H A Dcgroup_iter.c25 static char expected_output[64]; variable
83 ASSERT_STREQ(buf, expected_output, testname); in read_from_cgroup_iter()
132 snprintf(expected_output, sizeof(expected_output), in test_walk_preorder()
143 snprintf(expected_output, sizeof(expected_output), in test_walk_postorder()
157 snprintf(expected_output, sizeof(expected_output), in test_walk_ancestors_up()
173 snprintf(expected_output, sizeof(expected_output), in test_early_termination()
185 snprintf(expected_output, sizeof(expected_output), in test_walk_self_only()
195 char expected_output[128], buf[128]; in test_walk_dead_self_only() local
210 snprintf(expected_output, sizeof(expected_output), EPILOGUE); in test_walk_dead_self_only()
252 ASSERT_STREQ(buf, expected_output, "dead cgroup output"); in test_walk_dead_self_only()
/openbmc/qemu/tests/qtest/
H A Dnpcm7xx_adc-test.c208 uint32_t index, input, output, expected_output; in test_convert_internal() local
215 expected_output = adc_calculate_output(input, DEFAULT_IREF); in test_convert_internal()
225 g_assert_cmpuint(output, ==, expected_output); in test_convert_internal()
236 uint32_t index, input, vref, output, expected_output; in test_convert_external() local
245 expected_output = adc_calculate_output(input, vref); in test_convert_external()
256 g_assert_cmpuint(output, ==, expected_output); in test_convert_external()
268 uint32_t index, input, output, expected_output; in test_interrupt() local
273 expected_output = adc_calculate_output(input, DEFAULT_IREF); in test_interrupt()
285 g_assert_cmpuint(output, ==, expected_output); in test_interrupt()
329 uint32_t expected_output; in test_calibrate() local
[all …]
/openbmc/u-boot/test/py/tests/
H A Dtest_pinmux.py44 expected_output = 'Can\'t get the pin-controller: ' + pincontroller + '!'
45 assert (expected_output in output)
53 expected_output = 'dev: ' + pincontroller
54 assert (expected_output in output)
H A Dtest_log.py110 def run_with_format(fmt, expected_output): argument
120 assert output == expected_output
/openbmc/openbmc/meta-arm/meta-arm/lib/oeqa/runtime/cases/
H A Dtrusted_services.py10 def run_test_tool(self, cmd, expected_status=0, expected_output=None ): argument
15 if expected_output is not None:
16 self.assertEqual(output, expected_output, msg='\n'.join([cmd, output]))
59 self.run_test_tool('ts-service-test -lg', expected_output=test_grp_list)
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/libteam/libteam/
H A D0001-team_basic_test.py-switch-to-python3.patch53 def cmd_exec(cmd, expected_output=None, cleaner=False):
61 @@ -74,7 +74,7 @@ def cmd_exec(cmd, expected_output=None, cleaner=False):
67 if expected_output:
68 if output != expected_output:
69 raise CmdExecUnexpectedOutputException(output, expected_output)
/openbmc/openbmc/poky/scripts/lib/resulttool/
H A Dmanualexecution.py96 expected_output = case['test']['execution'][step]['expected_results']
97 if expected_output:
98 print('Expected output: %s' % expected_output)
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/
H A Dsstatetests.py843expected_output = ("Task perlcross-native:do_install couldn't be used from the cache because:",
846 expected_sametmp_output = expected_output + (
849 expected_difftmp_output = expected_output
863expected_output = ("Task {}:do_preconfigure couldn't be used from the cache because:".format(gcc_s…
866 expected_sametmp_output = expected_output + (
869 expected_difftmp_output = expected_output
892expected_output = ["Task {} couldn't be used from the cache because:".format(t) for t in change_bb…
896 expected_sametmp_output = expected_output + [
899 expected_difftmp_output = expected_output
/openbmc/linux/crypto/
H A Dtestmgr.c677 const char *expected_output, in verify_correct_output() argument
701 if (memcmp(expected_output, actual_output, len) != 0) in verify_correct_output()
707 expected_output += len; in verify_correct_output()