Skip to content

Commit 0e640e4

Browse files
committed
fix windows clang test?
1 parent a9c82dc commit 0e640e4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/windows_clang.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
with:
1919
platform: x64
2020
- name: Test No-Op (debug)
21-
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
21+
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
2222
- name: Test STL (debug) - no allocators
23-
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
23+
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
2424
- name: Test fio_malloc speed
25-
run: clang -O3 -Wno-#pragma-messages -march=native tests\malloc.c -I. -o ./malloc.exe && ./malloc.exe
25+
run: clang -O3 "-Wno-#pragma-messages" -march=native tests\malloc.c -I. -o ./malloc.exe && ./malloc.exe
2626
- name: Test STL
27-
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
27+
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 commit comments

Comments
 (0)