Skip to content

Commit cb22872

Browse files
committed
Ensure SAN is on to cause the failure
1 parent 2076bbe commit cb22872

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ jobs:
181181
git config --global --add safe.directory /__w/CCF/CCF
182182
mkdir build
183183
cd build
184-
cmake -GNinja -DCOMPILE_TARGET=snp -DCMAKE_BUILD_TYPE=Debug ..
184+
cmake -GNinja -DCOMPILE_TARGET=snp -DCMAKE_BUILD_TYPE=Debug -DSAN=ON ..
185185
ninja
186186
shell: bash
187187

src/host/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1001,7 +1001,7 @@ int main(int argc, char** argv) // NOLINT(bugprone-exception-escape)
10011001
while ((uv_loop_alive(uv_default_loop()) != 0) && (close_iterations > 0))
10021002
{
10031003
uv_run(uv_default_loop(), UV_RUN_NOWAIT);
1004-
usleep(1000); // 1ms
1004+
//usleep(1000); // 1ms
10051005
close_iterations--;
10061006
}
10071007
LOG_INFO_FMT(

0 commit comments

Comments
 (0)