summaryrefslogtreecommitdiff
path: root/src/testdir/test_system.vim
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.2.0712: various code not fully testedv8.2.0712Bram Moolenaar2020-05-071-0/+38
| | | | | Problem: Various code not fully tested. Solution: Add a few more tests. (Yegappan Lakshmanan, closes #6049)
* patch 8.1.2230: MS-Windows: testing external commands can be improvedv8.1.2230Bram Moolenaar2019-10-281-34/+14
| | | | | Problem: MS-Windows: testing external commands can be improved. Solution: Adjust tests, remove duplicate test. (closes #4928)
* patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a spacev8.1.2115Bram Moolenaar2019-10-051-0/+51
| | | | | Problem: MS-Windows: shell commands fail if &shell contains a space. Solution: Use quotes instead of escaping. (closes #4920)
* patch 8.1.2093: MS-Windows: system() test failsv8.1.2093Bram Moolenaar2019-09-281-4/+4
| | | | | Problem: MS-Windows: system() test fails. Solution: Expect CR when using systemlist().
* patch 8.1.2092: MS-Windows: redirect in system() does not workv8.1.2092Bram Moolenaar2019-09-281-10/+30
| | | | | | Problem: MS-Windows: redirect in system() does not work. Solution: Handle 'shellxescape' and 'shellxquote' better. (Yasuhiro Matsumoto, closes #2054)
* patch 8.1.1846: inconsistently using GetVimCommand() and v:progpathv8.1.1846Bram Moolenaar2019-08-141-13/+15
| | | | | | Problem: Inconsistently using GetVimCommand() and v:progpath. (Daniel Hahler) Solution: Use GetVimCommand(). (closes #4806)
* patch 8.1.1809: more functions can be used as a methodv8.1.1809Bram Moolenaar2019-08-041-2/+2
| | | | | Problem: More functions can be used as a method. Solution: Add has_key(), split(), str2list(), etc.
* patch 8.1.0711: test files still use function!v8.1.0711Bram Moolenaar2019-01-091-3/+3
| | | | | Problem: Test files still use function!. Solution: Remove the exclamation mark. Fix overwriting a function.
* patch 8.0.0701: system test failing when using X11 forwardingv8.0.0701Bram Moolenaar2017-07-081-2/+2
| | | | | | Problem: System test failing when using X11 forwarding. Solution: Set $XAUTHORITY before changing $HOME. (closes #1812) Also use a better check for the exit value.
* patch 8.0.0197: system() test skips some parts for MS-Windowsv8.0.0197Bram Moolenaar2017-01-161-23/+26
| | | | | Problem: On MS-Windows the system() test skips a few parts. Solution: Swap single and double quotes for the command.
* patch 8.0.0185: system() test fails on MS-Windowsv8.0.0185Bram Moolenaar2017-01-141-0/+4
| | | | | Problem: The system() test fails on MS-Windows. Solution: Skip the test on MS-Windows.
* patch 8.0.0184: when an error is caught Vim still exits with non-zero resultv8.0.0184Bram Moolenaar2017-01-141-0/+37
| | | | | | | Problem: When in Ex mode and an error is caught by try-catch, Vim still exits with a non-zero exit code. Solution: Don't set ex_exitval when inside a try-catch. (partly by Christian Brabandt)
* patch 8.0.0154: system() test fails on OS/Xv8.0.0154Bram Moolenaar2017-01-081-1/+9
| | | | | Problem: system() test fails on OS/X. Solution: Deal with leading spaces.
* patch 8.0.0153: system() test fails on MS-Windowsv8.0.0153Bram Moolenaar2017-01-081-4/+24
| | | | | Problem: system() test fails on MS-Windows. Solution: Deal when extra space and CR.
* patch 8.0.0151: passing buffer content to system() is clumsyv8.0.0151Bram Moolenaar2017-01-081-0/+20
Problem: To pass buffer content to system() and systemlist() one has to first create a string or list. Solution: Allow passing a buffer number. (LemonBoy, closes #1240)