romcc: Use UNIX line endings in linux tests

This makes it easier to check the output against a reference output.

Change-Id: I9c7ae538b708399a5cadd18e498618d7480d240f
Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
Reviewed-on: https://review.coreboot.org/14276
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Martin Roth <martinroth@google.com>
This commit is contained in:
Jonathan Neuschäfer
2016-04-13 02:47:24 +02:00
committed by Martin Roth
parent 9551cf4709
commit 3cfbc4a608
5 changed files with 18 additions and 19 deletions

View File

@ -6,11 +6,11 @@ static void main(void)
static const int value[] = { 1, 0 };
const char *str;
if (value[1]) {
print_debug("A\r\n");
str = "Unbuffered\r\n";
print_debug("A\n");
str = "Unbuffered\n";
} else {
print_debug("B\r\n");
str = "Registered\r\n";
print_debug("B\n");
str = "Registered\n";
}
print_debug(str);
_exit(0);