diff --git a/.gitignore b/.gitignore index f9dafb6..f478d3a 100644 --- a/.gitignore +++ b/.gitignore @@ -13,6 +13,7 @@ gdbscript memtest_shared_debug.lds # Binaries +mt86plus memtest_shared memtest_shared.bin *.bin diff --git a/tests/tests.c b/tests/tests.c index a7cd767..7620f10 100644 --- a/tests/tests.c +++ b/tests/tests.c @@ -50,9 +50,9 @@ test_pattern_t test_list[NUM_TEST_PATTERNS] = { // ena, cpu, stgs, itrs, errs, description - { true, SEQ, 1, 6, 0, "[Address test, walking ones, no cache] "}, - {false, SEQ, 1, 6, 0, "[Address test, own address in window] "}, - { true, SEQ, 2, 6, 0, "[Address test, own address + window] "}, + { true, ONE, 1, 6, 0, "[Address test, walking ones, no cache] "}, + {false, ONE, 1, 6, 0, "[Address test, own address in window] "}, + { true, ONE, 2, 6, 0, "[Address test, own address + window] "}, { true, PAR, 1, 6, 0, "[Moving inversions, 1s & 0s] "}, { true, PAR, 1, 3, 0, "[Moving inversions, 8 bit pattern] "}, { true, PAR, 1, 30, 0, "[Moving inversions, random pattern] "},