Skip to content

Commit

Permalink
lima-memtester: Swap the order of 'bitflip' and 'solidbits' tests
Browse files Browse the repository at this point in the history
The 'bitflip' test is more likely to correctly distinguish between
READ and WRITE errors, so run it before 'solidbits'.

Signed-off-by: Siarhei Siamashka <siarhei.siamashka@gmail.com>
  • Loading branch information
ssvb committed Oct 13, 2015
1 parent 758b336 commit a1966fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions memtester-4.3.0/memtester.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ struct test tests[] = {
{ "Compare OR", test_or_comparison },
{ "Compare AND", test_and_comparison },
{ "Sequential Increment", test_seqinc_comparison },
{ "Solid Bits", test_solidbits_comparison },
{ "Bit Flip", test_bitflip_comparison },
{ "Block Sequential", test_blockseq_comparison },
{ "Checkerboard", test_checkerboard_comparison },
{ "Bit Spread", test_bitspread_comparison },
{ "Bit Flip", test_bitflip_comparison },
{ "Solid Bits", test_solidbits_comparison },
{ "Walking Ones", test_walkbits1_comparison },
{ "Walking Zeroes", test_walkbits0_comparison },
#ifdef TEST_NARROW_WRITES
Expand Down

0 comments on commit a1966fd

Please sign in to comment.