Skip to content

Commit 69ab3dc

Browse files
committed
missing break
1 parent 15abfed commit 69ab3dc

3 files changed

Lines changed: 4 additions & 1 deletion

File tree

src/xacontrol_default_runner.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ namespace xpyt
2828
std::cout << "Notified control listener." << std::endl;
2929
}
3030
}
31+
std::clog << "Exiting control default runner loop." << std::endl;
3132

3233
stop_channels();
3334
}

src/xasync_runner.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,7 @@ namespace xpyt
189189

190190
py::object stop_func = m_global_dict["stop_loop"];
191191
stop_func(fd_shell_int, fd_controller_int, m_use_busy_loop);
192+
break;
192193

193194
}
194195
else

test/CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# ==========
1313

1414
cmake_minimum_required(VERSION 3.20)
15-
15+
enable_testing()
1616
if (CMAKE_CURRENT_SOURCE_DIR STREQUAL CMAKE_SOURCE_DIR)
1717
project(xeus-python-test)
1818

@@ -57,6 +57,7 @@ set(XEUS_PYTHON_TESTS
5757

5858
add_executable(test_xeus_python ${XEUS_PYTHON_TESTS})
5959

60+
6061
target_compile_features(test_xeus_python PRIVATE cxx_std_17)
6162

6263
if (APPLE)

0 commit comments

Comments
 (0)