1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-01-26 15:32:04 +00:00

Provide sorted output.

This commit is contained in:
Thomas Harte 2023-09-14 12:29:49 -04:00
parent 28027385bc
commit 804f80d23c

View File

@ -100,7 +100,7 @@ constexpr char TestSuiteHome[] = "/Users/tharte/Projects/ProcessorTests/8088/v1"
}
}
NSLog(@"%ld failures out of %ld tests: %@", failures.count, testFiles.count, failures);
NSLog(@"%ld failures out of %ld tests: %@", failures.count, testFiles.count, [[failures allObjects] sortedArrayUsingSelector:@selector(caseInsensitiveCompare:)]);
}
@end