/third_party/jerryscript/tests/unit-core/ |
D | test-number-to-int32.cpp | 63 #define TEST_CASE(num, uint32) { num, uint32 } macro 64 TEST_CASE (1.0, 1), 65 TEST_CASE (0.0, 0), 66 TEST_CASE (NAN, 0), 67 TEST_CASE (-NAN, 0), 68 TEST_CASE (INFINITY, 0), 69 TEST_CASE (-INFINITY, 0), 70 TEST_CASE (0.1, 0), 71 TEST_CASE (-0.1, 0), 72 TEST_CASE (1.1, 1), [all …]
|
/third_party/unity/test/tests/ |
D | testparameterized.c | 12 #define TEST_CASE(...) macro 75 TEST_CASE(0) 76 TEST_CASE(44) 77 TEST_CASE((90)+9) 83 TEST_CASE(3) 84 TEST_CASE(77) 85 TEST_CASE( (99) + 1 - (1)) 93 TEST_CASE(1) 94 TEST_CASE(44) 95 TEST_CASE(99) [all …]
|
D | test_unity_parameterized.c | 12 #define TEST_CASE(...) macro 75 TEST_CASE(0) 76 TEST_CASE(44) 77 TEST_CASE((90)+9) 83 TEST_CASE(3) 84 TEST_CASE(77) 85 TEST_CASE( (99) + 1 - (1)) 93 TEST_CASE(1) 94 TEST_CASE(44) 95 TEST_CASE(99) [all …]
|
/third_party/jerryscript/tools/runners/ |
D | run-debugger-test.sh | 20 TEST_CASE=$4 27 if [[ $TEST_CASE == *"client_source"* ]]; then 29 if [[ $TEST_CASE == *"client_source_multiple"* ]]; then 30 CLIENT_ARGS="--client-source ${TEST_CASE}_2.js ${TEST_CASE}_1.js" 32 CLIENT_ARGS="--client-source ${TEST_CASE}.js" 35 START_DEBUG_SERVER="${JERRY} ${TEST_CASE}.js --start-debug-server --debug-channel ${CHANNEL} &" 42 RESULT_TEMP=`mktemp ${TEST_CASE}.out.XXXXXXXXXX` 44 (cat "${TEST_CASE}.cmd" | ${DEBUGGER_CLIENT} --channel ${CHANNEL} --non-interactive ${CLIENT_ARGS})… 46 if [[ $TEST_CASE == *"restart"* ]]; then 47 CONTINUE_CASE=$(sed "s/restart/continue/g" <<< "$TEST_CASE") [all …]
|
/third_party/cJSON/tests/unity/test/tests/ |
D | testparameterized.c | 13 #define TEST_CASE(...) macro 64 TEST_CASE(0) 65 TEST_CASE(44) 66 TEST_CASE((90)+9) 72 TEST_CASE(3) 73 TEST_CASE(77) 74 TEST_CASE( (99) + 1 - (1)) 82 TEST_CASE(1) 83 TEST_CASE(44) 84 TEST_CASE(99) [all …]
|
/third_party/cJSON/tests/unity/test/testdata/ |
D | testRunnerGenerator.c | 23 #define TEST_CASE(a) macro 137 TEST_CASE(25) 138 TEST_CASE(125) 139 TEST_CASE(5) 145 TEST_CASE(7) 156 TEST_CASE(17)
|
D | testRunnerGeneratorWithMocks.c | 24 #define TEST_CASE(a) macro 138 TEST_CASE(25) 139 TEST_CASE(125) 140 TEST_CASE(5) 146 TEST_CASE(7) 157 TEST_CASE(17)
|
/third_party/unity/test/testdata/ |
D | testRunnerGenerator.c | 23 #define TEST_CASE(a) macro 145 TEST_CASE(25) 146 TEST_CASE(125) 147 TEST_CASE(5) 153 TEST_CASE(7) 164 TEST_CASE(17)
|
D | testRunnerGeneratorWithMocks.c | 24 #define TEST_CASE(a) macro 143 TEST_CASE(25) 144 TEST_CASE(125) 145 TEST_CASE(5) 151 TEST_CASE(7) 162 TEST_CASE(17)
|
/third_party/libabigail/tests/ |
D | test-kmi-whitelist.cc | 69 TEST_CASE("NoWhitelists", "[whitelists]") 77 TEST_CASE("WhitelistWithASingleEntry", "[whitelists]") 87 TEST_CASE("WhitelistWithADuplicateEntry", "[whitelists]") 97 TEST_CASE("TwoWhitelists", "[whitelists]") 109 TEST_CASE("TwoWhitelistsWithDuplicates", "[whitelists]") 121 TEST_CASE("WhitelistWithTwoSections", "[whitelists]")
|
D | test-cxx-compat.cc | 18 TEST_CASE("OptionalConstruction", "[abg_compat::optional]") 32 TEST_CASE("OptionalValue", "[abg_compat::optional]") 43 TEST_CASE("OptionalValueOr", "[abg_compat::optional]") 59 TEST_CASE("OptionalDeref", "[abg_compat::optional]")
|
D | test-symtab.cc | 65 TEST_CASE("Symtab::Empty", "[symtab, basic]") 75 TEST_CASE("Symtab::NoDebugInfo", "[symtab, basic]") 146 TEST_CASE("Symtab::SimpleSymtabs", "[symtab, basic]") 208 TEST_CASE("Symtab::SymtabWithWhitelist", "[symtab, whitelist]") 278 TEST_CASE("Symtab::AliasedFunctionSymbols", "[symtab, functions, aliases]") 302 TEST_CASE("Symtab::AliasedVariableSymbols", "[symtab, variables, aliases]") 329 TEST_CASE("Symtab::SimpleKernelSymtabs", "[symtab, basic, kernel, ksymtab]") 412 TEST_CASE("Symtab::KernelSymtabsWithCRC", "[symtab, crc, kernel, ksymtab]")
|
/third_party/json/tests/src/ |
D | unit-user_defined_input.cpp | 18 TEST_CASE("Use arbitrary stdlib container") 45 TEST_CASE("Custom container non-member begin/end") 57 TEST_CASE("Custom container member begin/end") 82 TEST_CASE("Custom iterator")
|
D | unit-udt.cpp | 226 TEST_CASE("basic usage" * doctest::test_suite("udt")) 384 TEST_CASE("adl_serializer specialization" * doctest::test_suite("udt")) 460 TEST_CASE("even supported types can be specialized" * doctest::test_suite("udt")) 499 TEST_CASE("Non-copyable types" * doctest::test_suite("udt")) 640 TEST_CASE("custom serializer for pods" * doctest::test_suite("udt")) 680 TEST_CASE("custom serializer that does adl by default" * doctest::test_suite("udt")) 693 TEST_CASE("different basic_json types conversions") 792 TEST_CASE("an incomplete type does not trigger a compiler error in non-evaluated context" * doctest… 815 TEST_CASE("Issue #924") 828 TEST_CASE("Issue #1237") [all …]
|
D | unit-allocator.cpp | 31 TEST_CASE("bad_alloc") 114 TEST_CASE("controlled bad_alloc") 237 TEST_CASE("bad my_allocator::construct")
|
D | unit-testsuites.cpp | 17 TEST_CASE("compliance tests from json.org") 103 TEST_CASE("compliance tests from nativejson-benchmark") 311 TEST_CASE("test suite from json-test-suite") 326 TEST_CASE("json.org examples") 400 TEST_CASE("RFC 8259 examples") 472 TEST_CASE("nst's JSONTestSuite") 900 TEST_CASE("nst's JSONTestSuite (2)") 1353 TEST_CASE("Big List of Naughty Strings")
|
D | unit-bson.cpp | 19 TEST_CASE("BSON") 590 TEST_CASE("BSON input/output_adapters") 725 TEST_CASE("Incomplete BSON Input") 821 TEST_CASE("Negative size of binary value") 840 TEST_CASE("Unsupported BSON input") 858 TEST_CASE("BSON numerical data") 1213 TEST_CASE("BSON roundtrips" * doctest::skip()) in skip()
|
D | unit-32bit.cpp | 92 TEST_CASE("32bit") 103 TEST_CASE("BJData")
|
D | unit-hash.cpp | 17 TEST_CASE("hash<nlohmann::json>") 66 TEST_CASE("hash<nlohmann::ordered_json>")
|
D | unit-windows_h.cpp | 18 TEST_CASE("include windows.h")
|
/third_party/mesa3d/.gitlab-ci/tests/ |
D | test_lava_job_submitter.py | 67 LogSectionType.TEST_CASE: [ 68 section_timeout(LogSectionType.TEST_CASE) + 1 105 LogSectionType.TEST_CASE: [ 106 section_timeout(LogSectionType.TEST_CASE) + 1 124 messages={LogSectionType.TEST_CASE: [1] * (1000)},
|
/third_party/mesa3d/.gitlab-ci/lava/utils/ |
D | log_section.py | 14 TEST_CASE = auto() variable in LogSectionType 32 LogSectionType.TEST_CASE: timedelta(minutes=60), 71 section_type=LogSectionType.TEST_CASE,
|
/third_party/mesa3d/.gitlab-ci/tests/utils/ |
D | test_lava_log.py | 56 type=LogSectionType.TEST_CASE, 267 td = {LogSectionType.TEST_CASE: timedelta(minutes=1)} 271 lf.timeout_durations[LogSectionType.TEST_CASE] + timedelta(**timedelta_kwargs)
|
/third_party/mesa3d/.gitlab-ci/tests/lava/ |
D | helpers.py | 57 result_message_section = LogSectionType.TEST_CASE 130 LogSectionType.TEST_CASE: create_lava_yaml_msg(
|
/third_party/json/tests/abi/inline_ns/ |
D | use_v3_10_5.cpp | 15 TEST_CASE("use library v3.10.5 without inline namespace")
|