Skip to content

Commit

Permalink
disable #pragma message warning
Browse files Browse the repository at this point in the history
  • Loading branch information
boazsegev committed Feb 8, 2025
1 parent 09cf377 commit 7e5f656
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/windows_clang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ jobs:
run: |
echo "CI=false" >> "$GITHUB_ENV"
- name: Test No-Op (debug)
run: clang -O0 -fstack-protector-all tests\noop.c -I. -DFIO_LEAK_COUNTER=1 -DDEBUG -D_CRT_NONSTDC_NO_WARNINGS -o ./noop.exe && ./noop.exe
run: clang -O0 -Wno-#pragma-messages -fstack-protector-all tests\noop.c -I. -DFIO_LEAK_COUNTER=1 -DDEBUG -D_CRT_NONSTDC_NO_WARNINGS -o ./noop.exe && ./noop.exe
- name: Test STL (debug) - no allocators
run: clang -O0 -fstack-protector-all tests\stl.c -I. -DFIO_MEMORY_DISABLE=1 -DFIO_LEAK_COUNTER=1 -D_CRT_NONSTDC_NO_WARNINGS -DDEBUG -o ./stld.exe && ./stld.exe
run: clang -O0 -Wno-#pragma-messages -fstack-protector-all tests\stl.c -I. -DFIO_MEMORY_DISABLE=1 -DFIO_LEAK_COUNTER=1 -D_CRT_NONSTDC_NO_WARNINGS -DDEBUG -o ./stld.exe && ./stld.exe
- name: Test fio_malloc speed
run: clang -O3 -march=native tests\malloc.c -I. -o ./malloc.exe && ./malloc.exe
run: clang -O3 -Wno-#pragma-messages -march=native tests\malloc.c -I. -o ./malloc.exe && ./malloc.exe
- name: Test STL
run: clang -O3 -march=native tests\stl.c -DFIO_LEAK_COUNTER=1 -D_CRT_NONSTDC_NO_WARNINGS -I. -o ./stl.exe && ./stl.exe
run: clang -O3 -Wno-#pragma-messages -march=native tests\stl.c -DFIO_LEAK_COUNTER=1 -D_CRT_NONSTDC_NO_WARNINGS -I. -o ./stl.exe && ./stl.exe

0 comments on commit 7e5f656

Please sign in to comment.