summaryrefslogtreecommitdiffstats
path: root/tests/winPipe.test
Commit message (Collapse)AuthorAgeFilesLines
* Merge 8.6oehhar2023-11-301-21/+26
|\
| * Remove comment sign from winPipe slowtest. I suppose, this is not intentionaly.oehhar2023-11-301-1/+1
| |
| * fixes percent-subst regression [fb2fa9b3f6] introduced by fixing of ↵sebres2023-10-271-0/+7
| | | | | | | | | | | | vulnerability [21b0629c81]; warning (todo): since it'd reopen a injection-vector by execution of command processor/batch-files as described in [fb2fa9b3f6] (unexpected tripple/double quote), [exec] as well as [open |...] should get new option for safe escape (or no .bat/.cmd/comspec execution with arguments from foreign input can be considered as safe without extra parameters validation).
| * better readability for winPipe.test (naming flags), no functional changessebres2023-10-271-22/+20
| |
| * Remove unnecessary end-of-line spacing in test-casesjan.nijtmans2021-02-161-1/+1
| |
* | Test hygiene for supporting -singleproc 1 and -debug 1dgp2023-09-151-0/+1
| |
* | Thanks to TIP #587, convert many escapes in the testcases into the actual ↵jan.nijtmans2021-03-301-1/+1
| | | | | | | | (UTF-8) character.
* | TIP 590: Recommend lowercase Package Namesjan.nijtmans2020-12-041-2/+2
|\ \
| * | Fix testcases on Windows. Use more "info loaded" as appropriatejan.nijtmans2020-11-241-1/+1
| | |
| * | Merge 8.7jan.nijtmans2020-11-191-1/+1
| |\ \
| * \ \ Lesser TIP #590 implementation: Only package renaming, no code changesjan.nijtmans2020-11-061-2/+2
| |\ \ \
| | * | | Case-sensitive package namesjan.nijtmans2020-11-031-6/+6
| |/ / /
* | | | More ©-sign consolidationjan.nijtmans2020-11-231-1/+1
| | | |
* | | | Now that all Tcl source files are UTF-8 by default, we can use the ©-sign ↵jan.nijtmans2020-11-231-2/+2
| |/ / |/| | | | | | | | whenever reasonable.
* | | Merge 8.6dkf2020-11-161-1/+1
|\ \ \ | |/ / |/| / | |/
* | Fix env.test when running under wine on Linux. jan.nijtmans2020-10-161-7/+10
| | | | | | Mark other tests with "notWine", which fail currently under wine
* | Merge 8.6jan.nijtmans2020-09-041-2/+4
|\ \ | |/
| * Let all test-cases load the "tcltest" package the same way. Depend on ↵jan.nijtmans2020-09-041-1/+1
| | | | | | | | tcltest 2.5, since we never test with earlier tcltest versions
* | merge 8.6sebres2018-11-221-1/+7
|\ \ | |/
| * merge 8.5: fixes segfault [7a9dc52b29] and wrong normalization (inside ↵sebres2018-11-221-1/+7
| |\ | | | | | | | | | TclJoinPath) for pure relative path-segments; test-cases extended and several windows-related are fixed.
| | * win: fixed pwd-related test-cases in winPipe.test: several test-cases expect ↵sebres2018-11-201-1/+7
| | | | | | | | | | | | current directory equals [temporaryDirectory]
* | | merge 8.6dgp2018-10-171-0/+1
|\ \ \ | |/ /
| * | Revert addition of "slowTest" as built-in constraint. (no TIP; no version bump).dgp2018-10-171-0/+1
| | | | | | | | | Let the test file that needs the constraint define it with existing facilities.
* | | Merge 8.6jan.nijtmans2018-10-121-2/+3
|\ \ \ | |/ /
| * | Use the 4 argument form of [makeFile].dgp2018-10-091-2/+3
| | |
* | | Balance the [makeFile/makeDirectory] and [removeFile/removeDirectory] calls ↵dkf2018-10-091-5/+4
|\ \ \ | |/ / | | | | | | (conditional now, so avoids warnings in filter/constraint cases).
| * | Balance the [makeFile/makeDirectory] and [removeFile/removeDirectory] calls ↵sebres2018-10-091-5/+4
| | | | | | | | | | | | (conditional now, so avoids warnings in filter/constraint cases).
* | | Merge 8.6jan.nijtmans2018-09-231-2/+2
|\ \ \ | |/ /
| * | Give lambda function a name "ReceiveChunked" for easier testing. New ↵jan.nijtmans2018-09-231-3/+3
| | | | | | | | | | | | function quoteString and code cleanup
* | | merge 8.6sebres2018-08-301-0/+30
|\ \ \ | |/ /
| * | merge 8.5sebres2018-08-301-0/+30
| |\ \ | | |/
| | * test-cases to cover quoting of the newline character, and the documentation ↵sebres2018-08-301-0/+30
| | | | | | | | | | | | extended.
* | | merge 8.6sebres2018-08-291-60/+190
|\ \ \ | |/ /
| * | merge 8.5 ([21b0629c81] 0-day vulnerability - insufficient escape by exec of ↵sebres2018-08-291-60/+190
| |\ \ | | |/ | | | | | | batch-files for windows)
| | * code review, skip slow test winpipe-8.2 executed args from injectList ↵sebres2018-08-231-2/+33
| | | | | | | | | | | | particularly (normally winpipe-8.3 covers the same but jointly), to enable use parameter `-constraints slowTest`, added new test with randomly generated potentially dangerous args
| | * code review, restored backwards compatibility of the simplest escape of ↵sebres2018-08-231-4/+4
| | | | | | | | | | | | quote-chars (so reverted several tests winpipe-7.x)
| | * fixes escape for special cases (+ more test-cases):sebres2018-08-211-1/+29
| | | | | | | | | | | | - `%` char to be escaped (quoted) in any case (regardless pairing flag), otherwise `%username%` will be interpolated as username. - escape of multiple backslashes before quote is different (as without following quote) in unpaired quote syntax (upaired flag set)
| | * because executable (1st argument) always proper escaped now, don't need to ↵sebres2018-08-201-11/+33
| | | | | | | | | | | | replace long path name of batch-executable with short path name (reduced to 16-bit applications only).
| | * small amend: avoid reset of unpaired quote flag between arguments (previous ↵sebres2018-08-201-61/+108
| | | | | | | | | | | | affects next) + test cases extended with several injection checks.
| | * win: fixes [21b0629c81] - exec/open process pipe under windows (0-day ↵sebres2018-08-201-4/+4
| | | | | | | | | | | | vulnerability - insufficient escape)
| | * win: some test-cases missing constraint for testexcept (if compiled without ↵sebres2018-04-111-4/+5
| | | | | | | | | | | | test)
* | | Add "file join $grandParentDir tcl8.? library" as possible path for a valid ↵jan.nijtmans2016-12-151-3/+3
| | | | | | | | | | | | | | | init.tcl. Some simplifications in use of test restrictions.
* | | Eliminate exess spacings in many test-casesjan.nijtmans2016-03-101-2/+2
|/ /
* | Remove all win95-specific test-cases, since Windows 95 is not supported any ↵jan.nijtmans2014-04-171-8/+0
| | | | | | | | more.
* | fix winPipe.test tests, when running with tcltest86.dlljan.nijtmans2012-07-301-1/+12
| |
* | fix filesystem-7.1.x tests in install environment [3549770], as suggested by ↵jan.nijtmans2012-07-301-4/+5
| | | | | | | | | | Twylite temporary workaround for winPipe failing tests (still work to do)
* | Now that we're no longer using SCM based on RCS, the RCS Keyword linesdgp2011-03-021-2/+0
|\ \ | |/ | | cause more harm than good. Purged them (except in zlib files).
| * Now that we're no longer using SCM based on RCS, the RCS Keyword lines causedgp2011-03-021-2/+0
| |\ | | | | | | more harm than good. Purged them.
| | * Now that we're no longer using SCM based on RCS, the RCS Keyword lines causedgp2011-03-011-2/+0
| | | | | | | | | more harm than good. Purged them.
| | * * tests/winPipe.test (winpipe-6.2): remove -blocking 1 as this onehobbs2005-04-201-2/+1
| | | | | | | | | | | | can truly block.