-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(xunix): also mount shared symlinked shared object files (#123)
* fix(xunix): also mount shared object files with .so.N * chore(Makefile): add test and test-integration targets * chore(README.md): add hacking and troubleshooting sections * chore(integration): fix tests under cgroupv2 Signed-off-by: Cian Johnston <[email protected]> Co-authored-by: Dean Sheather <[email protected]>
- Loading branch information
1 parent
2b091cf
commit 361631d
Showing
5 changed files
with
92 additions
and
24 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 |
---|---|---|
|
@@ -32,3 +32,11 @@ fmt/go: | |
.PHONY: fmt/md | ||
fmt/md: | ||
go run github.com/Kunde21/markdownfmt/v3/cmd/[email protected] -w ./README.md | ||
|
||
.PHONY: test | ||
test: | ||
go test -v -count=1 ./... | ||
|
||
.PHONY: test-integration | ||
test-integration: | ||
go test -v -count=1 -tags=integration ./integration/ |
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