Skip to content

Commit b7b8b69

Browse files
+ tests-windows-2025-vs2026, fix format hack
1 parent de0e4c0 commit b7b8b69

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

.github/workflows/ci.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff 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 }}

testlib.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
62536253
template <typename... Args>
62546254
std::string format(const char* fmt, Args&&... args) {

0 commit comments

Comments
 (0)