cmd/tests: Add test for parameter detection.

This commit is contained in:
André Hentschel 2011-07-11 23:07:03 +02:00 committed by Alexandre Julliard
parent b37d39e351
commit a9504e276c
2 changed files with 6 additions and 0 deletions

View File

@ -70,6 +70,11 @@ if 1 == 0 (
) else (
echo else seems to work
)
if /c==/c (
echo if seems not to detect /c as parameter
) else (
echo parameter detection seems to be broken
)
echo Testing case sensitivity with and without /i option
if bar==BAR echo if does not default to case sensitivity
if not bar==BAR echo if seems to default to case sensitivity

View File

@ -74,6 +74,7 @@ P0S
if/else should work with blocks
if seems to work
else seems to work
@todo_wine@if seems not to detect /c as parameter
Testing case sensitivity with and without /i option
if seems to default to case sensitivity
if /i seems to work