-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Npipe: add integration test to verify async io
- Loading branch information
Showing
5 changed files
with
128 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
name: "Creates a Named Pipe" | ||
description: "Creates a Named Pipe for integration tests on Windows" | ||
runs: | ||
using: "composite" | ||
steps: | ||
- run: | | ||
docker pull gesellix/npipe:windows | ||
docker create --name npipe gesellix/npipe:windows | ||
docker cp npipe:/npipe.exe ./npipe.exe | ||
docker rm npipe | ||
docker rmi gesellix/npipe:windows | ||
./npipe.exe \\\\.\\pipe\\hijack_test & | ||
disown -h | ||
shell: bash | ||
branding: | ||
icon: "tag" | ||
color: "blue" | ||
... |
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
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