| /openbmc/openbmc/poky/meta/recipes-support/libevent/libevent/ |
| H A D | 0004-test-retriable-tests-are-marked-failed-only-when-all-a.patch | 25 - const struct testcase_t *testcase) 26 + const struct testcase_t *testcase, 36 + if (!opt_forked && (testcase->flags & TT_RETRIABLE) && !test_attempts) 37 printf("\n [%s FAILED]\n", testcase->name); 43 struct testcase_t *testcase = &group->cases[j]; 45 + int test_attempts = (testcase->flags & TT_RETRIABLE) ? 3: 1; 48 if (!(testcase->flags & TT_ENABLED_)) 52 - test_ret_err = testcase_run_one(group, testcase); 53 + test_ret_err = testcase_run_one(group, testcase, test_attempts); 57 - if (!(testcase->flags & TT_RETRIABLE)) [all …]
|
| /openbmc/openbmc-test-automation/tools/ct_metrics/ |
| H A D | gen_csv_results.py | 329 for testcase in collect_data_obj.test_data: 332 l_func_area = str(testcase.parent).split(" ", 1)[1] 333 l_test_name = str(testcase) 336 if testcase.status == "PASS": 338 elif testcase.status == "SKIP": 345 l_stime = xml_to_csv_time(testcase.starttime) 346 l_etime = xml_to_csv_time(testcase.endtime)
|
| /openbmc/openbmc/poky/meta/recipes-core/ifupdown/files/ |
| H A D | 0001-ifupdown-skip-wrong-test-case.patch | 6 The test parameters of testcase(12-15) file is not right, 27 if [ -e $dir/testcase.$test ]; then 28 args="$(cat $dir/testcase.$test | sed -n 's/^# RUN: //p')"
|
| H A D | tweak-ptest-script.patch | 31 - ./ifup -v --no-act-commands --force -i $dir/testcase.$test --state-dir=$dir/state.$test $a… 32 + ifup -v --no-act-commands --force -i $dir/testcase.$test --state-dir=$dir/state.$test $arg… 40 - ./ifdown -v --no-act-commands --force -i $dir/testcase.$test --state-dir=$dir/state.$test … 41 + ifdown -v --no-act-commands --force -i $dir/testcase.$test --state-dir=$dir/state.$test $a…
|
| /openbmc/openbmc/poky/meta/lib/oeqa/buildperf/ |
| H A D | base.py | 198 testcase = ET.SubElement(suite, 'testcase') 199 testcase.set('classname', test.__module__ + '.' + test.__class__.__name__) 200 testcase.set('name', test.name) 201 testcase.set('description', test.shortDescription()) 202 testcase.set('timestamp', test.start_time.isoformat()) 203 testcase.set('time', str(test.elapsed_time.total_seconds())) 206 result = ET.SubElement(testcase, 'failure') 208 result = ET.SubElement(testcase, 'error') 213 result = ET.SubElement(testcase, 'skipped') 219 measurement = ET.SubElement(testcase, data['type'])
|
| /openbmc/openbmc-test-automation/lib/ |
| H A D | dmtf_redfishtool_utils.robot | 22 # expected_error Expected error optionally provided in testcase (e.g. 401 / 41 # expected_error Expected error optionally provided in testcase (e.g. 401 / 61 # expected_error Expected error optionally provided in testcase (e.g. 401 / 79 # expected_error Expected error optionally provided in testcase (e.g. 401 /
|
| /openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/lksctp-tools/ |
| H A D | lksctp-tools_1.0.21.bb | 29 …for testcase in `find ${B}/src/apps/.libs ${B}/src/func_tests/.libs -maxdepth 1 -type f -executabl… 30 install $testcase ${D}${PTEST_PATH}
|
| /openbmc/qemu/tests/functional/qemu_test/ |
| H A D | __init__.py | 14 from .testcase import QemuBaseTest, QemuUserTest, QemuSystemTest
|
| H A D | linuxkernel.py | 13 from .testcase import QemuSystemTest
|
| /openbmc/openbmc/poky/scripts/lib/resulttool/template/ |
| H A D | test_report_full_text.txt | 71 {% for testcase in report.failed_testcases %} 72 {{ testcase }}
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-dbs/rocksdb/files/ |
| H A D | 0003-cmake-Do-not-add-msse4.2-mpclmul-on-clang.patch | 6 When testcase is compiled with clang and -msse4.2 -mpclmul is added to
|
| /openbmc/openbmc-test-automation/redfish/dmtf_tools/ |
| H A D | test_redfishtool_local_user.robot | 160 # expected_error Expected error optionally provided in testcase (e.g. 401 / 178 # expected_error Expected error optionally provided in testcase (e.g. 401 / 202 # expected_error Expected error optionally provided in testcase (e.g. 401 / 222 # expected_error Expected error optionally provided in testcase (e.g. 401 /
|
| /openbmc/openbmc/meta-openembedded/meta-filesystems/recipes-utils/xfstests/xfstests/ |
| H A D | 0002-Drop-detached_mounts_propagation-and-remove-sys-moun.patch | 10 testcase
|
| /openbmc/openbmc-test-automation/security/ |
| H A D | test_ssl.robot | 15 [Documentation] This testcase is for testing the SSL connection to the
|
| /openbmc/openbmc/poky/meta/recipes-extended/zip/zip-3.0/ |
| H A D | 0001-configure-Include-dirent.h-for-closedir-opendir-APIs.patch | 10 testcase tries to compile/link opendir/closedir functions
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-kernel/kernel-selftest/kernel-selftest/ |
| H A D | 0001-selftests-timers-Fix-clock_adjtime-for-newer-32-bit-.patch | 8 valid-adjtimex testcase fails to compile on such architectures.
|
| /openbmc/openbmc/poky/meta/recipes-devtools/valgrind/valgrind/ |
| H A D | 0001-tests-arm-Use-O-instead-of-O0.patch | 6 GCC-14 fails to compile the testcase with -O2 [1]
|
| /openbmc/openbmc/meta-arm/meta-arm-bsp/recipes-bsp/u-boot/u-boot/corstone1000/ |
| H A D | 0003-FF-A-v15-lib-uuid-introduce-testcase-for-uuid_str_to.patch | 4 Subject: [PATCH] FF-A v15: lib: uuid: introduce testcase for
|
| /openbmc/libmctp/docs/ |
| H A D | fuzzing.md | 75 When the fuzz run encounters a crash, the testcase can be run against the built
|
| /openbmc/openbmc-test-automation/redfish/systems/eventlog/ |
| H A D | test_esel.robot | 116 [Documentation] This testcase is to test BMC can handle multi-requestor's 131 [Documentation] This testcase is to test BMC can handle multi-requestor's
|
| /openbmc/openbmc/poky/meta/lib/oeqa/utils/ |
| H A D | decorators.py | 19 class testcase(object): class
|
| /openbmc/libpldm/docs/ |
| H A D | fuzzing.md | 90 When the fuzz run encounters a crash, the testcase can be run against the built
|
| /openbmc/openbmc/meta-arm/meta-arm-bsp/recipes-bsp/u-boot/ |
| H A D | u-boot-corstone1000.inc | 21 file://0003-FF-A-v15-lib-uuid-introduce-testcase-for-uuid_str_to.patch \
|
| /openbmc/openbmc/poky/meta/files/common-licenses/ |
| H A D | OGTSL | 81 testcase that clearly documents how it differs from the
|
| /openbmc/openbmc/poky/meta/recipes-devtools/gcc/gcc/ |
| H A D | 0026-fix-incorrect-preprocessor-line-numbers.patch | 79 The normal case (e.g. with the testcase included at the start of this comment) is 108 On the #c11 testcase that doesn't work correctly though, because 178 https://gcc.gnu.org/pipermail/gcc-patches/2025-May/682774.html testcase
|