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

@@ -9,13 +9,13 @@ struct mem_param {
unsigned dch_memclk;
unsigned short dch_tref4k, dch_tref8k;
unsigned char dtl_twr;
char name[9];
char name[8];
};
static void test(void)
{
static const struct mem_param param0 = {
.name = "166Mhz\r\n",
.name = "166Mhz\n",
.cycle_time = 0x60,
.divisor = (6<<1),
.tRC = 0x3C,
@@ -34,6 +34,6 @@ static void test(void)
clocks = (value + (param->divisor << 1) - 1)/(param->divisor << 1);
print_debug("clocks: ");
print_debug_hex32(clocks);
print_debug("\r\n");
print_debug("\n");
_exit(0);
}