pan/va: Align error messages in disassembler tests

Makes it easier to spot the difference, less eye scanning.

Signed-off-by: Alyssa Rosenzweig <alyssa@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/15461>
This commit is contained in:
Alyssa Rosenzweig 2022-03-17 16:46:19 -04:00 committed by Marge Bot
parent 3a4b864197
commit 9b7a45e3dc
1 changed files with 2 additions and 1 deletions

View File

@ -92,7 +92,8 @@ main(int argc, const char **argv)
bool fail = strcmp(reference, output);
if (fail) {
printf("Got %sExpected %s\n", output, reference);
/* Extra spaces after Got to align with Expected */
printf("Got %sExpected %s\n", output, reference);
nr_fail++;
} else {
nr_pass++;