mirror of
https://github.com/reactos/reactos.git
synced 2025-01-12 17:16:58 +00:00
b655fc4f5e
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
26 lines
549 B
Batchfile
26 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
|