reactos/rostests/win32/cmd/script_testsuite/tests/if.cmd
Colin Finck b655fc4f5e Add a testing suite for CMD based on CMD scripts.
Of course, ReactOS' cmd doesn't work at all with the framework at the moment :-)

Some tests were taken from "seta_test.cmd" by Royce. (see file headers)

svn path=/trunk/; revision=33560
2008-05-17 20:01:21 +00:00

27 lines
549 B
Batchfile

::
:: PROJECT: ReactOS CMD Testing Suite
:: LICENSE: GPL v2 or any later version
:: FILE: tests/if.cmd
:: PURPOSE: Tests for the "if" command
:: COPYRIGHT: Copyright 2005 Royce Mitchell III
:: Copyright 2008 Colin Finck <mail@colinfinck.de>
::
:: Bugs in the if code
if not "=="=="==" call :_failed "if not "=="=="==""
if "=="=="==" call :_successful
if "1"=="2" (
call :_failed "if "1"=="2""
) else (
call :_successful
)
if not "1"=="1" (
call :_failed "if "1"=="1""
) else (
call :_successful
)
goto :EOF