-
Notifications
You must be signed in to change notification settings - Fork 375
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- x86_64 glibc is supported - 32bit (x86 or armv7hf) glibc is not - musl is not (yet), for all cpu archs Add better negative tests to cover those base cases.
- Loading branch information
Showing
3 changed files
with
12 additions
and
4 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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
[ | ||
{"name": "✅ 2.27 glibc x86" ,"filepath": "/some/path", "args": [], "envars": [], "host": {"os": "linux", "arch": "x86" , "libc": "glibc:2.27"}}, | ||
{"name": "✅ 2.27 glibc x86" ,"filepath": "/some/path", "args": [], "envars": [], "host": {"os": "linux", "arch": "x64" , "libc": "glibc:2.27"}}, | ||
{"name": "✅ 2.27 glibc arm64","filepath": "/some/path", "args": [], "envars": [], "host": {"os": "linux", "arch": "arm64", "libc": "glibc:2.27"}} | ||
] |
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 |
---|---|---|
@@ -1,4 +1,12 @@ | ||
[ | ||
{"name": "❌ 2.26 glibc x86" ,"filepath": "/some/path", "args": [], "envars": [], "host": {"os": "linux", "arch": "x86" , "libc": "glibc:2.26"}}, | ||
{"name": "❌ musl x86" ,"filepath": "/some/path", "args": [], "envars": [], "host": {"os": "linux", "arch": "x86" , "libc": "musl:"}}, | ||
{"name": "❌ musl arm" ,"filepath": "/some/path", "args": [], "envars": [], "host": {"os": "linux", "arch": "arm" , "libc": "musl:"}}, | ||
{"name": "❌ musl x64" ,"filepath": "/some/path", "args": [], "envars": [], "host": {"os": "linux", "arch": "x64" , "libc": "musl:"}}, | ||
{"name": "❌ musl arm64" ,"filepath": "/some/path", "args": [], "envars": [], "host": {"os": "linux", "arch": "arm64" , "libc": "musl:"}}, | ||
|
||
{"name": "❌ 2.27 glibc x86" ,"filepath": "/some/path", "args": [], "envars": [], "host": {"os": "linux", "arch": "x86" , "libc": "glibc:2.27"}}, | ||
{"name": "❌ 2.27 glibc arm" ,"filepath": "/some/path", "args": [], "envars": [], "host": {"os": "linux", "arch": "arm" , "libc": "glibc:2.27"}}, | ||
|
||
{"name": "❌ 2.26 glibc x64" ,"filepath": "/some/path", "args": [], "envars": [], "host": {"os": "linux", "arch": "x64" , "libc": "glibc:2.26"}}, | ||
{"name": "❌ 2.26 glibc arm64","filepath": "/some/path", "args": [], "envars": [], "host": {"os": "linux", "arch": "arm64", "libc": "glibc:2.26"}} | ||
] |