• Joined on 2024-11-06
coffee synced commits to refs/pull/10814/head at coffee/mbedtls from mirror 2026-07-30 16:26:33 +08:00
c824263361 library: ssl_tls: replace wrong usage of mbedtls_pk_get_type with mbedtls_pk_get_key_type
coffee synced commits to refs/pull/10814/merge at coffee/mbedtls from mirror 2026-07-30 16:26:33 +08:00
076daf136e Merge c824263361e05fd95e8fde1772c036b708f81313 into 3bb373867917b674265067cbd38b9d252c43d014
c824263361 library: ssl_tls: replace wrong usage of mbedtls_pk_get_type with mbedtls_pk_get_key_type
Compare 2 commits »
coffee synced commits to refs/pull/4863/head at coffee/fmt from mirror 2026-07-30 16:26:27 +08:00
5ae4721b7e Skip c-test when the C compiler is Clang < 3.8
c5aaff567d Set matching CC alongside CXX in Linux CI matrix
758d39eb23 Add a missing include for the C++ module build (#4868)
c0330b7466 Do not optin into CPP modules without SCAN_DEPS on Clang (#4867)
a00f82c6b6 Bump version
Compare 12 commits »
coffee synced commits to refs/pull/4863/merge at coffee/fmt from mirror 2026-07-30 16:26:27 +08:00
c086c8dbca Merge 5ae4721b7e1b690e42b01227e22b76e33a3b2348 into 758d39eb239e6554d3ac0659b6f592fcd5317c24
5ae4721b7e Skip c-test when the C compiler is Clang < 3.8
c5aaff567d Set matching CC alongside CXX in Linux CI matrix
758d39eb23 Add a missing include for the C++ module build (#4868)
c0330b7466 Do not optin into CPP modules without SCAN_DEPS on Clang (#4867)
Compare 6 commits »
coffee synced commits to refs/pull/4692/head at coffee/googletest from mirror 2026-07-30 16:26:24 +08:00
1293242548 Create Zephyr external module
0891025bd9 Add support of Zephyr OS
a0f06a70e3 Make GoogleTest handle std::monostate and valueless_by_exception() for std::variant similarly to how it handles std::nullopt
Compare 3 commits »
coffee synced commits to refs/pull/4692/merge at coffee/googletest from mirror 2026-07-30 16:26:24 +08:00
b64ffad6c6 Merge 12932425481f6949df0cbf287ce0e1ae9bbcca79 into a0f06a70e3da7afa88da9527c43951bca1f7cef2
1293242548 Create Zephyr external module
0891025bd9 Add support of Zephyr OS
a0f06a70e3 Make GoogleTest handle std::monostate and valueless_by_exception() for std::variant similarly to how it handles std::nullopt
Compare 4 commits »
coffee synced commits to refs/pull/4837/merge at coffee/googletest from mirror 2026-07-30 16:26:24 +08:00
563ed6f36c Merge 7a60b1abe8be0a2790f7c7aebd2a065ecad60d3a into a0f06a70e3da7afa88da9527c43951bca1f7cef2
a0f06a70e3 Make GoogleTest handle std::monostate and valueless_by_exception() for std::variant similarly to how it handles std::nullopt
Compare 2 commits »
coffee synced commits to refs/pull/4872/merge at coffee/googletest from mirror 2026-07-30 16:26:24 +08:00
3df93118d8 Merge e0a66700097df42f4daf920110c9bf8214cc89b3 into a0f06a70e3da7afa88da9527c43951bca1f7cef2
a0f06a70e3 Make GoogleTest handle std::monostate and valueless_by_exception() for std::variant similarly to how it handles std::nullopt
Compare 2 commits »
coffee synced commits to refs/pull/4880/merge at coffee/googletest from mirror 2026-07-30 16:26:24 +08:00
4fffbd7c20 Merge e95f42f966f27d53b76c8653e72de1c659270818 into a0f06a70e3da7afa88da9527c43951bca1f7cef2
a0f06a70e3 Make GoogleTest handle std::monostate and valueless_by_exception() for std::variant similarly to how it handles std::nullopt
Compare 2 commits »
coffee synced commits to refs/pull/4924/merge at coffee/googletest from mirror 2026-07-30 16:26:24 +08:00
ad52b86815 Merge f252081fb5745ce6c5d410b28baa207d74a90349 into a0f06a70e3da7afa88da9527c43951bca1f7cef2
a0f06a70e3 Make GoogleTest handle std::monostate and valueless_by_exception() for std::variant similarly to how it handles std::nullopt
Compare 2 commits »
coffee synced commits to refs/pull/4927/merge at coffee/googletest from mirror 2026-07-30 16:26:24 +08:00
41051262e2 Merge a8cbb6af65014e9325f20884202a4b4b45590659 into a0f06a70e3da7afa88da9527c43951bca1f7cef2
a0f06a70e3 Make GoogleTest handle std::monostate and valueless_by_exception() for std::variant similarly to how it handles std::nullopt
3ff51c3e80 Merge pull request #5041 from alvinjaison:fix/get-test-suite-shuffle-index
1269db9643 Fix GetTestSuite(i) ignoring shuffle order UnitTestImpl::GetTestSuite(int i) computes the shuffled index from test_suite_indices_ but then accesses test_suites_ using the raw parameter 'i' instead of the computed 'index'. This causes the public API UnitTest::GetTestSuite(i) to return test suites in original registration order rather than the active shuffle order. The mutable variant GetMutableSuiteCase(i) correctly uses 'index', and the equivalent function TestSuite::GetTestInfo(i) also uses 'index'. This was a copy-paste typo introduced in commit bd851333 (Sep 2009) when the shuffle feature was first added. The bug is observable from within TestEventListener callbacks during test execution when --gtest_shuffle is active.
Compare 4 commits »
coffee synced commits to refs/pull/4962/merge at coffee/googletest from mirror 2026-07-30 16:26:24 +08:00
53af1d3a3d Merge 28452dd865aa7702a44335af6f046821858fe533 into a0f06a70e3da7afa88da9527c43951bca1f7cef2
a0f06a70e3 Make GoogleTest handle std::monostate and valueless_by_exception() for std::variant similarly to how it handles std::nullopt
3ff51c3e80 Merge pull request #5041 from alvinjaison:fix/get-test-suite-shuffle-index
c6f04243ed Automated Code Change
af4c3cfcb3 Automated Code Change
Compare 7 commits »
coffee synced commits to refs/pull/1520/head at coffee/etl from mirror 2026-07-30 16:26:17 +08:00
f1854d852a Add semaphores to tests
coffee synced commits to refs/pull/1520/merge at coffee/etl from mirror 2026-07-30 16:26:17 +08:00
4dc72f3ad7 Merge f1854d852a9771166d9b7279004e4b7b1b92b494 into 7f290365a9f1b72bf89b4b77ec7dbe39b228bd8e
f1854d852a Add semaphores to tests
Compare 2 commits »
coffee synced and deleted reference refs/tags/clean at coffee/fmt from mirror 2026-07-30 08:16:31 +08:00
coffee synced and deleted reference refs/tags/refs/pull/4857/merge at coffee/fmt from mirror 2026-07-30 08:16:31 +08:00
coffee synced and deleted reference refs/tags/refs/pull/4867/merge at coffee/fmt from mirror 2026-07-30 08:16:31 +08:00
coffee synced and deleted reference refs/tags/refs/pull/4868/merge at coffee/fmt from mirror 2026-07-30 08:16:31 +08:00
coffee synced commits to main at coffee/fmt from mirror 2026-07-30 08:16:31 +08:00
758d39eb23 Add a missing include for the C++ module build (#4868)
c0330b7466 Do not optin into CPP modules without SCAN_DEPS on Clang (#4867)
a00f82c6b6 Bump version
17500e457b doc extension concerning format_as and general implementations (#4857)
26c01df3bd Handle const-qualified named arguments
Compare 5 commits »
coffee synced commits to refs/pull/4860/merge at coffee/fmt from mirror 2026-07-30 08:16:31 +08:00
630aafeb70 Merge b059132e13d045c8f8217649cc8517e2eac846d7 into 17500e457b198c37c4374d142fa7a1d36e4651fe
17500e457b doc extension concerning format_as and general implementations (#4857)
26c01df3bd Handle const-qualified named arguments
Compare 3 commits »