PowerShell/test/powershell/Language/Parser
Bruce Payette dfb3866c5d Support backgrounding pipelines with ampersand (#3360)
Implements support for backgrounding pipelines with &. Putting & at the end of a pipeline will cause the pipeline
to be run as a PowerShell job. When a pipeline is backgrounded a job object is returned. Once the pipeline is
running as a job, all of the normal job cmdlets can be used to manage the job. Variables (ignoring process-specific
variables) used in the pipeline are automatically copied to the job so
    copy $foo $bar &
just works. The job is also run in the current directory instead of the user's home directory as is the case with Start-Job.Implement
2017-05-18 19:15:19 -07:00
..
Ast.Tests.ps1 Fix GetType() bad pattern and related issues in tests (#3134) 2017-02-15 16:40:51 -08:00
AutomaticVariables.Tests.ps1 Skip $input type test per #1563 2016-07-28 18:02:24 -07:00
BNotOperator.Tests.ps1 Fix GetType() bad pattern and related issues in tests (#3134) 2017-02-15 16:40:51 -08:00
Conversions.Tests.ps1 Search the assembly cache kept by ExecutionContext for type resolution. (#3327) 2017-03-17 13:19:31 -07:00
ExtensibleCompletion.Tests.ps1 Fix tab completion of native parameters (#2919) 2017-02-13 16:02:56 -08:00
LanguageAndParser.TestFollowup.Tests.ps1 Remove trailing whitespace (#3001) 2017-01-16 13:31:14 -08:00
MethodInvocation.Tests.ps1 Remove trailing whitespace (#3001) 2017-01-16 13:31:14 -08:00
ParameterBinding.Tests.ps1 Move powershell to .NET Core 2.0 (#3556) 2017-04-17 11:52:38 -07:00
Parser.Tests.ps1 Make small optimization in parser tests (#3072) 2017-02-08 17:42:44 -08:00
Parsing.Tests.ps1 Support backgrounding pipelines with ampersand (#3360) 2017-05-18 19:15:19 -07:00
RedirectionOperator.Tests.ps1 Remove trailing whitespace (#3001) 2017-01-16 13:31:14 -08:00
TypeAccelerator.Tests.ps1 changes tags for tests 2016-07-27 12:06:51 -07:00
UsingAssembly.Tests.ps1 Remove trailing whitespace (#3001) 2017-01-16 13:31:14 -08:00
UsingNamespace.Tests.ps1 Add autoload for TestLanguage.psm1 TestHelpers.psm1 (#3456) 2017-05-17 11:09:27 -07:00