Merge pull request #13512 from fjmolinas/pr_interactive_sync_disable

tests: handle cml interactive_sync disabling
This commit is contained in:
Dylan Laduranty 2020-03-02 09:39:53 +01:00 committed by GitHub
commit ee8b837b51
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -32,7 +32,11 @@ extern "C" {
* @details Wait for a 's' character to return
*
*/
#ifdef MODULE_TEST_UTILS_INTERACTIVE_SYNC
void test_utils_interactive_sync(void);
#else
static inline void test_utils_interactive_sync(void) {}
#endif
#ifdef __cplusplus