File tree Expand file tree Collapse file tree 2 files changed +15
-1
lines changed
Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -261,3 +261,17 @@ jobs:
261261 run : |
262262 cd tests
263263 bash ./run.sh ${{ matrix.compiler }}
264+
265+ tests-windows-2025-vs2026 :
266+ strategy :
267+ matrix :
268+ os : [windows-2025-vs2026]
269+ compiler : [msvc, g++, clang++]
270+ name : Use ${{ matrix.compiler }} on ${{ matrix.os }}
271+ runs-on : ${{ matrix.os }}
272+ steps :
273+ - uses : actions/checkout@v3
274+ - name : Run tests
275+ run : |
276+ cd tests
277+ bash ./run.sh ${{ matrix.compiler }}
Original file line number Diff line number Diff line change @@ -6248,7 +6248,7 @@ std::string testlib_format_(const std::string fmt, ...) {
62486248 #define TESTLIB_NEEDS_FORMAT_FIX
62496249#endif
62506250
6251- #ifdef TESTLIB_NEEDS_PRINTLN_FIX
6251+ #ifdef TESTLIB_NEEDS_FORMAT_FIX
62526252#define format __testlib_format_impl
62536253template <typename ... Args>
62546254std::string format (const char * fmt, Args&&... args) {
You can’t perform that action at this time.
0 commit comments