Searched full:cxx (Results 1 – 25 of 80) sorted by relevance
1234
/hal_espressif-3.6.0/examples/cxx/experimental/experimental_cpp_component/test/ |
D | test_esp_event_cxx.cpp | 34 #define TAG "Event CXX Test" 144 TEST_CASE("ESPEventAPIDefault deinitialization without failure", "[cxx event]") 153 TEST_CASE("ESPEventReg cb nullptr", "[cxx event]") 161 TEST_CASE("ESPEventReg api nullptr", "[cxx event]") 170 TEST_CASE("ESPEventReg event api not initialized", "[cxx event]") 180 TEST_CASE("ESPEventReg event register failure no loop initialized", "[cxx event]") 190 TEST_CASE("ESPEventReg initialization failure", "[cxx event]") 200 TEST_CASE("ESPEventReg registration success", "[cxx event]") 213 TEST_CASE("ESPEventLoopCB event passes data", "[cxx event]") 232 TEST_CASE("ESPEventLoop Create event loop failure", "[cxx event]") [all …]
|
D | test_cxx_exceptions.cpp | 13 #define TAG "CXX Exception Test" 20 #error "unknown target in CXX tests, can't set leaks threshold" 23 TEST_CASE("TEST_THROW catches exception", "[cxx exception][leaks=" LEAKS "]") 30 TEST_CASE("TEST_THROW asserts catching different exception", "[cxx exception][ignore]") 35 TEST_CASE("TEST_THROW asserts not catching any exception", "[cxx exception][ignore]") 40 TEST_CASE("CHECK_THROW continues on ESP_OK", "[cxx exception][leaks=" LEAKS "]") 46 TEST_CASE("CHECK_THROW throws", "[cxx exception][leaks=" LEAKS "]") 52 TEST_CASE("ESPException has working what() method", "[cxx exception][leaks=" LEAKS "]")
|
D | test_i2c.cpp | 62 TEST_CASE("I2CMaster GPIO out of range", "[cxx i2c][leaks=300]") 67 TEST_CASE("I2CMaster SDA and SCL equal", "[cxx i2c][leaks=300]") 72 TEST_CASE("I2Transfer timeout", "[cxx i2c][leaks=300]") 176 TEST_CASE_MULTIPLE_DEVICES("I2CRead do_transfer", "[cxx i2c][test_env=UT_T2_I2C][timeout=150]", 192 TEST_CASE_MULTIPLE_DEVICES("I2CWrite do_transfer", "[cxx i2c][test_env=UT_T2_I2C][timeout=150]", 214 TEST_CASE_MULTIPLE_DEVICES("I2CMaster read one byte", "[cxx i2c][test_env=UT_T2_I2C][timeout=150]", 230 TEST_CASE_MULTIPLE_DEVICES("I2CMaster write one byte", "[cxx i2c][test_env=UT_T2_I2C][timeout=150]", 253 TEST_CASE_MULTIPLE_DEVICES("I2CMaster read multiple bytes", "[cxx i2c][test_env=UT_T2_I2C][timeout=… 269 TEST_CASE_MULTIPLE_DEVICES("I2CMaster write multiple bytes", "[cxx i2c][test_env=UT_T2_I2C][timeout… 287 TEST_CASE_MULTIPLE_DEVICES("I2CMaster sync read", "[cxx i2c][test_env=UT_T2_I2C][timeout=150]", [all …]
|
/hal_espressif-3.6.0/components/cxx/test/ |
D | test_cxx.cpp | 17 TEST_CASE("can use new and delete", "[cxx]") 38 TEST_CASE("can call virtual functions", "[cxx]") 45 TEST_CASE("can use std::vector", "[cxx]") 67 #error "unknown target in CXX tests, can't set leaks threshold" 70 TEST_CASE("c++ exceptions work", "[cxx] [exceptions] [leaks=" LEAKS "]") 82 TEST_CASE("c++ bool exception", "[cxx] [exceptions] [leaks=" LEAKS "]") 94 TEST_CASE("c++ void exception", "[cxx] [exceptions] [leaks=" LEAKS "]") 106 TEST_CASE("c++ uint64_t exception", "[cxx] [exceptions] [leaks=" LEAKS "]") 118 TEST_CASE("c++ char exception", "[cxx] [exceptions] [leaks=" LEAKS "]") 130 TEST_CASE("c++ wchar exception", "[cxx] [exceptions] [leaks=" LEAKS "]") [all …]
|
D | test_rtti.cpp | 35 TEST_CASE("unsuccessful dynamic cast on pointer returns nullptr", "[cxx]") 44 TEST_CASE("dynamic cast works", "[cxx]") 52 TEST_CASE("typeid of dynamic objects works", "[cxx]") 65 TEST_CASE("typeid of function works", "[cxx]") 71 TEST_CASE("unsuccessful dynamic cast on reference throws exception", "[cxx]") 85 TEST_CASE("typeid on nullptr throws bad_typeid", "[cxx]")
|
D | test_initialization.cpp | 17 static const char* TAG = "cxx"; 34 TEST_CASE("can use static initializers for non-POD types", "[cxx]") 87 TEST_CASE("static initialization guards work as expected", "[cxx]") 131 TEST_CASE("global initializers run in the correct order", "[cxx]") 161 TEST_CASE("before scheduler has started, static initializers work correctly", "[cxx]") 193 TEST_CASE("init_priority extension works", "[cxx]")
|
/hal_espressif-3.6.0/components/nvs_flash/test_nvs_host/ |
D | test_nvs_cxx_api.cpp | 28 TEST_CASE("NVSHandleSimple CXX api open invalid arguments", "[nvs cxx]") 50 TEST_CASE("NVSHandleSimple CXX api open partition uninitialized", "[nvs cxx]") 62 TEST_CASE("NVSHandleSimple CXX api open successful", "[nvs cxx]") 88 TEST_CASE("NVSHandleSimple CXX api open default part successful", "[nvs cxx]") 114 TEST_CASE("NVSHandleSimple CXX api open default part ns NULL", "[nvs cxx]") 136 TEST_CASE("NVSHandleSimple CXX api read/write string", "[nvs cxx]") 165 TEST_CASE("NVSHandleSimple CXX api read/write blob", "[nvs cxx]")
|
/hal_espressif-3.6.0/docs/zh_CN/api-guides/ |
D | unit-tests-legacy.rst | 193 (5) "can use new and delete" [cxx] 194 (6) "can call virtual functions" [cxx] 195 (7) "can use static initializers for non-POD types" [cxx] 196 (8) "can use std::vector" [cxx] 197 (9) "static initialization guards work as expected" [cxx] 198 (10) "global initializers run in the correct order" [cxx] 199 (11) "before scheduler has started, static initializers work correctly" [cxx] 222 - 方括号中的模组名称(例如 ``[cxx]``),运行指定模组的所有的测试用例。
|
D | unit-tests.rst | 195 (5) "can use new and delete" [cxx] 196 (6) "can call virtual functions" [cxx] 197 (7) "can use static initializers for non-POD types" [cxx] 198 (8) "can use std::vector" [cxx] 199 (9) "static initialization guards work as expected" [cxx] 200 (10) "global initializers run in the correct order" [cxx] 201 (11) "before scheduler has started, static initializers work correctly" [cxx]
|
/hal_espressif-3.6.0/ |
D | sonar-project.properties | 15 # sonar-cxx-plugin # 18 sonar.cxx.includeDirectories=/usr/include 19 sonar.cxx.file.suffixes=.cxx,.cpp,.cc,.c,.hxx,.hpp,.hh,.h
|
/hal_espressif-3.6.0/tools/ci/ |
D | check_examples_cmake_make-cmake_ignore.txt | 3 cxx/experimental/experimental_cpp_component/ 4 cxx/experimental/esp_modem_cxx 8 examples/cxx/experimental/blink_cxx
|
D | check_examples_cmake_make-make_ignore.txt | 4 examples/cxx/experimental/blink_cxx 5 examples/cxx/experimental/esp_modem_cxx/
|
/hal_espressif-3.6.0/docs/en/api-guides/ |
D | unit-tests-legacy.rst | 164 (5) "can use new and delete" [cxx] 165 (6) "can call virtual functions" [cxx] 166 (7) "can use static initializers for non-POD types" [cxx] 167 (8) "can use std::vector" [cxx] 168 (9) "static initialization guards work as expected" [cxx] 169 (10) "global initializers run in the correct order" [cxx] 170 (11) "before scheduler has started, static initializers work correctly" [cxx] 193 - Module name in square brackets (for example, ``[cxx]``) to run all test cases for a specific modu…
|
D | unit-tests.rst | 195 (5) "can use new and delete" [cxx] 196 (6) "can call virtual functions" [cxx] 197 (7) "can use static initializers for non-POD types" [cxx] 198 (8) "can use std::vector" [cxx] 199 (9) "static initialization guards work as expected" [cxx] 200 (10) "global initializers run in the correct order" [cxx] 201 (11) "before scheduler has started, static initializers work correctly" [cxx]
|
/hal_espressif-3.6.0/components/cxx/ |
D | CMakeLists.txt | 51 idf_component_get_property(cxx cxx COMPONENT_LIB) 56 target_link_libraries(libgcc_cxx INTERFACE gcc $<TARGET_FILE:${cxx}>)
|
/hal_espressif-3.6.0/components/pthread/test/ |
D | test_cxx_cond_var.cpp | 52 TEST_CASE("cxx: condition_variable can timeout", "[cxx]") 65 TEST_CASE("cxx: condition_variable timeout never before deadline", "[cxx]")
|
/hal_espressif-3.6.0/components/bootloader/subproject/components/micro-ecc/micro-ecc/ |
D | emk_project.py | 47 c.cxx.flags += ["-stdlib=libc++"] 48 link.cxx.flags += ["-stdlib=libc++"] 114 c.cxx.flags.extend(cxx_flags) 118 link.cxx.local_flags.extend(cxx_link_flags)
|
/hal_espressif-3.6.0/examples/cxx/experimental/esp_mqtt_cxx/ssl/ |
D | Makefile | 8 EXTRA_COMPONENT_DIRS += $(IDF_PATH)/examples/cxx/experimental/esp_mqtt_cxx/components 9 EXTRA_COMPONENT_DIRS += $(IDF_PATH)/examples/cxx/experimental/experimental_cpp_component
|
D | CMakeLists.txt | 8 $ENV{IDF_PATH}/examples/cxx/experimental/experimental_cpp_component 9 $ENV{IDF_PATH}/examples/cxx/experimental/esp_mqtt_cxx/components)
|
/hal_espressif-3.6.0/examples/cxx/experimental/esp_mqtt_cxx/tcp/ |
D | Makefile | 8 EXTRA_COMPONENT_DIRS += $(IDF_PATH)/examples/cxx/experimental/esp_mqtt_cxx/components 9 EXTRA_COMPONENT_DIRS += $(IDF_PATH)/examples/cxx/experimental/experimental_cpp_component
|
D | CMakeLists.txt | 8 $ENV{IDF_PATH}/examples/cxx/experimental/experimental_cpp_component 9 $ENV{IDF_PATH}/examples/cxx/experimental/esp_mqtt_cxx/components)
|
/hal_espressif-3.6.0/examples/cxx/experimental/experimental_cpp_component/ |
D | README.md | 9 set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/cxx/experimental/experimental_cpp_component) 15 set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/examples/cxx/experimental/experimental_cpp_component/")
|
/hal_espressif-3.6.0/.gitlab/ci/ |
D | static-code-analysis.yml | 105 -Dsonar.cxx.clangtidy.reportPath=$REPORT_PATTERN 124 -Dsonar.cxx.clangtidy.reportPath=$REPORT_PATTERN
|
/hal_espressif-3.6.0/tools/unit-test-app/configs/ |
D | cxx_exceptions | 3 TEST_COMPONENTS=cxx
|
D | cxx_exceptions_c3 | 3 TEST_COMPONENTS=cxx
|
1234