mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 12:23:31 +00:00
[KMTEST:FSRTL]
Fix assertion failure on checked builds svn path=/trunk/; revision=58789
This commit is contained in:
@@ -475,8 +475,12 @@ static VOID FsRtlIsDbcsInExpressionTest()
|
||||
ok(FsRtlIsDbcsInExpression(&Expression, &Name) == FALSE, "expected FALSE, got TRUE\n");
|
||||
RtlInitAnsiString(&Name, " ");
|
||||
ok(FsRtlIsDbcsInExpression(&Expression, &Name) == FALSE, "expected FALSE, got TRUE\n");
|
||||
RtlInitAnsiString(&Name, "");
|
||||
ok(FsRtlIsDbcsInExpression(&Expression, &Name) == FALSE, "expected FALSE, got TRUE\n");
|
||||
|
||||
if (!KmtIsCheckedBuild)
|
||||
{
|
||||
RtlInitAnsiString(&Name, "");
|
||||
ok(FsRtlIsDbcsInExpression(&Expression, &Name) == FALSE, "expected FALSE, got TRUE\n");
|
||||
}
|
||||
RtlInitAnsiString(&Name, ".");
|
||||
ok(FsRtlIsDbcsInExpression(&Expression, &Name) == TRUE, "expected TRUE, got FALSE\n");
|
||||
RtlInitAnsiString(&Name, "1.txt");
|
||||
|
||||
Reference in New Issue
Block a user