-
Notifications
You must be signed in to change notification settings - Fork 208
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add basic tests for apr_proc_create() for Windows batch files.
* CMakeLists.txt: Copy echoargs.bat to build dir. * test/echoargs.bat: Windows batch file that just prints passed arguments. * test/testproc.c: (test_proc_args_winbatch): New test. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1920854 13f79535-47bb-0310-9956-ffa450edef68
- Loading branch information
Ivan Zhakov
committed
Sep 23, 2024
1 parent
27b0370
commit 16d7aaf
Showing
3 changed files
with
87 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
@echo off | ||
echo 1: [%1] | ||
echo 2: [%2] | ||
echo 3: [%3] | ||
echo 4: [%4] | ||
echo 5: [%5] | ||
echo 6: [%6] | ||
echo 7: [%7] | ||
echo 8: [%8] | ||
echo 9: [%9] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters