mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 04:11:30 +00:00
7f8792e005
- Tests for GOTO across IF parenthesized block (parser test with line continuation at closing parenthesis). - Tests for showing how FOR-loops stop when a GOTO is encountered. - Tests for EXIT command within IF block.
37 lines
1.3 KiB
Plaintext
37 lines
1.3 KiB
Plaintext
/*
|
|
* Copyright 2010 Jacek Caban for CodeWeavers
|
|
* Copyright 2017 by Doug Lyons
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
/* @makedep: test_builtins.cmd */
|
|
test_builtins.cmd TESTCMD "test_builtins.cmd"
|
|
|
|
/* @makedep: test_builtins.cmd.exp */
|
|
test_builtins.cmd.exp TESTOUT "test_builtins.cmd.exp"
|
|
|
|
/* @makedep: test_echoer_parser.cmd */
|
|
test_echoer_parser.cmd TESTCMD "test_echoer_parser.cmd"
|
|
|
|
/* @makedep: test_echoer_parser.cmd.exp */
|
|
test_echoer_parser.cmd.exp TESTOUT "test_echoer_parser.cmd.exp"
|
|
|
|
/* @makedep: test_goto_call.cmd */
|
|
test_goto_call.cmd TESTCMD "test_goto_call.cmd"
|
|
|
|
/* @makedep: test_goto_call.cmd.exp */
|
|
test_goto_call.cmd.exp TESTOUT "test_goto_call.cmd.exp"
|