Skip to content

Commit

Permalink
Fix requirements.json test (#6186)
Browse files Browse the repository at this point in the history
## Summary of changes

Fixes the allow list test

## Reason for change

In #6182 I backported the SSI list, but annoyingly looks like the test
was wrong, which has broken it

## Implementation details

Fix the test

## Test coverage

The test didn't run previously for "reasons". It _should_ run now
  • Loading branch information
andrewlock authored Oct 23, 2024
1 parent 084a790 commit 93c3eb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tracer/build/artifacts/requirements_block.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
{"name": "unsupported 2.x.x glibc x64","filepath": "/some/path", "args": [], "envars": [], "host": {"os": "linux", "arch": "arm64", "libc": "glibc:2.22.9"}},
{"name": "glibx x86","filepath": "/some/path", "args": [], "envars": [], "host": {"os": "linux", "arch": "x86", "libc": "glibc:2.23"}},
{"name": "musl x86","filepath": "/some/path", "args": [], "envars": [], "host": {"os": "linux", "arch": "x86", "libc": "musl:1.2.2"}},
{"name": "musl arm64", "filepath": "/some/path", "args": [], "envars": [], "host": {"os": "linux", "arch": "x64", "libc": "musl:1.2.2"}},
{"name": "musl arm64", "filepath": "/some/path", "args": [], "envars": [], "host": {"os": "linux", "arch": "arm64", "libc": "musl:1.2.2"}},
{"name": "dotnet-core-uninstall","filepath": "/some/path/to/dotnet-core-uninstall", "args": ["/some/path/to/dotnet-core-uninstall"], "envars": [], "host": {"os": "windows", "arch": "x64"}},
{"name": "dotnet-core-uninstall with flags","filepath": "/some/path/to/dotnet-core-uninstall", "args": ["/some/path/to/dotnet-core-uninstall", "-a", "--force"], "envars": [], "host": {"os": "windows", "arch": "x64"}},
{"name": "dotnet msbuild","filepath": "/pathto/dotnet", "args": ["/pathto/dotnet", "msbuild", "myproj.csproj"], "envars": [], "host": {"os": "windows", "arch": "x64"}},
Expand Down

0 comments on commit 93c3eb6

Please sign in to comment.