Project

General

Profile

Revision 1166

Added # to the beginning of every USB output line, as it should not be interpreted by the server.

View differences:

test_comm.c
4 4
/** Returns whether we have communication **/
5 5
bool test_comm ()
6 6
{
7
	usb_puts("Testing communications" NL);
7
	usb_puts("# Testing communications" NL);
8 8

  
9 9
	// FIXME implement
10 10

  
11 11
	bool success=true;
12 12

  
13 13
	if (success)
14
		usb_puts("Testing communication finished (communication succeeded)" NL);
14
		usb_puts("# Testing communication finished (communication succeeded)" NL);
15 15
	else
16
		usb_puts("Testing communication finished (communication failed)" NL);
16
		usb_puts("# Testing communication finished (communication failed)" NL);
17 17

  
18 18
	return success;
19 19
}

Also available in: Unified diff