From ab4214c033b6adee544178df44823d5f24b5d3c5 Mon Sep 17 00:00:00 2001 From: Hugo Devillers Date: Tue, 2 Jul 2024 15:21:47 +0200 Subject: [PATCH] temporarily disable MSVC for thorin C tests --- test/thorin/oracle.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/thorin/oracle.cmake b/test/thorin/oracle.cmake index 54ee0c3..e70ed41 100644 --- a/test/thorin/oracle.cmake +++ b/test/thorin/oracle.cmake @@ -19,7 +19,7 @@ endif() execute_process(COMMAND ${COMPILER} ${SRC} -O1 ${OPTIONAL_EMIT_C} ${OPTIONAL_EMIT_LLVM} ${OPTIONAL_EMIT_SPIRV} ${TARGS} COMMAND_ERROR_IS_FATAL ANY COMMAND_ECHO STDOUT) message("Ran thorin on :${SRC}") -if (C) +if (C AND NOT MSVC) execute_process(COMMAND ${C_COMPILER} ${DST}/${T}.c -c COMMAND_ERROR_IS_FATAL ANY COMMAND_ECHO STDOUT) message("Validated C output for ${T}") endif()