You've already forked lazarus-ccr
fpexif: Fix usage with Delphi 7. Update readme.txt.
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@9016 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -159,8 +159,11 @@ begin
|
||||
RunTest(node);
|
||||
node := node.GetNextSibling;
|
||||
end;
|
||||
MismatchInfo.Caption := Format('%d mismatches out of %d tests (%.0f%%)', [
|
||||
FMismatchCount, FTotalCount, FMismatchCount/FTotalCount*100]);
|
||||
if FTotalCount = 0 then
|
||||
MismatchInfo.Caption := 'No tests executed.'
|
||||
else
|
||||
MismatchInfo.Caption := Format('%d mismatches out of %d tests (%.0f%%)', [
|
||||
FMismatchCount, FTotalCount, FMismatchCount/FTotalCount*100]);
|
||||
MismatchInfo.Show;
|
||||
end;
|
||||
|
||||
|
Reference in New Issue
Block a user