Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion applications/test_channel/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -318,6 +318,9 @@ fn asynchronous_test_oneshot() -> Result<(), &'static str> {
Ok(())
}

fn existence_of_this_function_causes_bug() -> Result<(), &'static str>{
Ok(())
}

/// A simple test that spawns a sender & receiver task to send `send_count` and receive `receive_count` messages.
fn asynchronous_test_multiple(send_count: usize, receive_count: usize, send_panic: Option<usize>, receive_panic: Option<usize>) -> Result<(), &'static str> {
Expand Down Expand Up @@ -403,4 +406,4 @@ fn print_usage(opts: Options) {
}

const USAGE: &'static str = "Usage: test_channel OPTION ARG
Provides a selection of different tests for channel-based communication.";
Provides a selection of different tests for channel-based communication.";