diff --git a/CMakeLists.txt b/CMakeLists.txt index 198f5ad8f5..61cecf7d68 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -127,7 +127,8 @@ if(USE_MIMALLOC) # Unnecessarily deep directory structure, but it saves us from a complicated # stage0 update for now. If we ever update the other dependencies like # cadical, it might be worth reorganizing the directory structure. - SOURCE_DIR "${CMAKE_BINARY_DIR}/mimalloc/src/mimalloc" + SOURCE_DIR + "${CMAKE_BINARY_DIR}/mimalloc/src/mimalloc" ) FetchContent_MakeAvailable(mimalloc) endif() diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index ada3293b2d..ae58a4842f 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -290,7 +290,13 @@ add_test_pile(../doc/examples *.lean) add_test_pile(compile *.lean BENCH PART2) add_test_pile(compile_bench *.lean BENCH PART2) add_test_pile(docparse *.txt) -add_test_pile(elab *.lean) +add_test_pile( + elab + *.lean + EXCEPT + async_select_channel.lean # Flaky + sync_mutex.lean # Flaky +) add_test_pile(elab_bench *.lean BENCH PART2) add_test_pile(elab_fail *.lean) add_test_pile(misc *.sh)