Skip to content

Commit b878080

Browse files
committed
fix: other windows related testing issues
1 parent 94f8013 commit b878080

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030

3131
- shell: bash
3232
working-directory: build/
33-
run: cmake $GITHUB_WORKSPACE -DEXT_DOWNLOAD=ON -DLIBEXT_TESTS=ON -G "Visual Studio 17 2022"
33+
run: cmake $GITHUB_WORKSPACE -DEXT_DOWNLOAD=ON -DLIBEXT_TESTS=ON -DLIBEXT_TESTS_NO_TIME_CRITICAL=ON -G "Visual Studio 17 2022"
3434

3535
- working-directory: build/
3636
run: cmake --build . --config ${{ matrix.build_type }}
@@ -53,7 +53,7 @@ jobs:
5353

5454
- shell: bash
5555
working-directory: build/
56-
run: cmake $GITHUB_WORKSPACE -DEXT_DOWNLOAD=ON -DLIBEXT_TESTS=ON -G "Visual Studio 17 2022" -T ClangCL
56+
run: cmake $GITHUB_WORKSPACE -DEXT_DOWNLOAD=ON -DLIBEXT_TESTS=ON -DLIBEXT_TESTS_NO_TIME_CRITICAL=ON -G "Visual Studio 17 2022" -T ClangCL
5757

5858
- working-directory: build/
5959
run: cmake --build . --config ${{ matrix.build_type }}

tests/util_memstream.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ TEST(util_memstream, imemstream_basic) {
3131

3232
TEST(util_memstream, viewstream_size) {
3333
int size = sizeof(eu::viewstream);
34-
ASSERT_GE(size, 250);
34+
ASSERT_GE(size, 200); // much smaller on windows !!!
3535
ASSERT_LE(size, 450);
3636
}
3737

0 commit comments

Comments
 (0)