-
Notifications
You must be signed in to change notification settings - Fork 200
feat(mutating): Mutate unsigned right-shift operator #3200
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
rouke-broersma
merged 6 commits into
stryker-mutator:master
from
martincostello:unsigned-right-shift-mutation
Mar 14, 2025
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
9a726fb
Mutate unsigned right-shift operator
martincostello 613fc90
Add integration test script
martincostello d53718e
Add integration test
martincostello e2492f5
Update integration tests
martincostello ed83eea
Merge branch 'master' into unsigned-right-shift-mutation
rouke-broersma a6a91bd
Merge branch 'master' into unsigned-right-shift-mutation
rouke-broersma File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 |
---|---|---|
|
@@ -289,3 +289,4 @@ StrykerLogs/ | |
*.DotSettings | ||
/src/Stryker.CLI/TestStatisticsAnalyzer/test-stats-report.json | ||
.DS_Store | ||
.nuget/ |
This file contains hidden or 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,83 @@ | ||
#! /usr/bin/env pwsh | ||
|
||
#Requires -PSEdition Core | ||
#Requires -Version 7 | ||
|
||
param() | ||
|
||
$ErrorActionPreference = "Stop" | ||
|
||
${env:RestoreLockedMode} = "true" | ||
|
||
$repoRoot = ${env:GITHUB_WORKSPACE} ?? $PSScriptRoot | ||
|
||
$publishPath = Join-Path $repoRoot "publish" | ||
|
||
$netCoreTargetPath = Join-Path $repoRoot "integrationtest" "TargetProjects" "NetCore" "NetCoreTestProject.XUnit" | ||
$netfxTargetPath = Join-Path $repoRoot "integrationtest" "TargetProjects" "NetFramework" "FullFrameworkApp.Test" | ||
|
||
$testPath = Join-Path $repoRoot "integrationtest" "Validation" "ValidationProject" | ||
$testFilter = "Category=SingleTestProject" | ||
|
||
$toolPath = Join-Path $repoRoot ".nuget" "tools" | ||
$toolProject = Join-Path $repoRoot "src" "Stryker.CLI" "Stryker.CLI" "Stryker.CLI.csproj" | ||
|
||
$toolVersion = "0.0.0-" | ||
|
||
if (${env:GITHUB_ACTIONS} -eq "true") { | ||
$toolVersion += "github-${env:GITHUB_RUN_NUMBER}" | ||
} else { | ||
$toolVersion += "localdev" | ||
} | ||
|
||
$stryker = Join-Path $toolPath "dotnet-stryker" | ||
|
||
dotnet pack $toolProject "-p:PackageVersion=${toolVersion}" --output $publishPath | ||
|
||
if ($LASTEXITCODE -ne 0) { | ||
throw "dotnet pack failed with exit code ${LASTEXITCODE}" | ||
} | ||
|
||
dotnet tool install dotnet-stryker --add-source $publishPath --allow-downgrade --tool-path $toolPath --version $toolVersion | ||
|
||
if ($LASTEXITCODE -ne 0) { | ||
throw "dotnet tool install failed with exit code ${LASTEXITCODE}" | ||
} | ||
|
||
pushd $netCoreTargetPath | ||
|
||
try { | ||
& $stryker --dev-mode | ||
} finally { | ||
popd | ||
} | ||
|
||
if ($LASTEXITCODE -ne 0) { | ||
throw "dotnet-stryker failed for .NET with exit code ${LASTEXITCODE}" | ||
} | ||
|
||
if ($IsWindows) { | ||
pushd $netfxTargetPath | ||
|
||
try { | ||
dotnet msbuild -t:restore | ||
|
||
if ($LASTEXITCODE -ne 0) { | ||
throw "dotnet msbuild failed to restore NuGet packages with exit code ${LASTEXITCODE}" | ||
} | ||
|
||
& $stryker --dev-mode | ||
|
||
if ($LASTEXITCODE -ne 0) { | ||
throw "dotnet-stryker failed for .NET Framework with exit code ${LASTEXITCODE}" | ||
} | ||
} finally { | ||
popd | ||
} | ||
} | ||
|
||
dotnet test $testPath --filter $testFilter | ||
|
||
if ($LASTEXITCODE -ne 0) { | ||
throw "dotnet test failed with exit code ${LASTEXITCODE}" | ||
} |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.