diff --git a/Il2CppTests/update-expected-results.ps1 b/Il2CppTests/update-expected-results.ps1 index 5a814cc..a40fe21 100644 --- a/Il2CppTests/update-expected-results.ps1 +++ b/Il2CppTests/update-expected-results.ps1 @@ -7,6 +7,7 @@ # Get all test results $bin = (gci "$PSScriptRoot/TestBinaries/*/*" -Filter test-result.cs) +$bin2 = (gci "$PSScriptRoot/TestBinaries/*/*" -Filter test-result-1.cs) # Get path to expected test results $results = "$PSScriptRoot/TestExpectedResults" @@ -14,4 +15,9 @@ $results = "$PSScriptRoot/TestExpectedResults" $bin | % { $target = $results + "/" + (Split-Path -Path (Split-Path -Path $_) -Leaf) + ".cs" cp $_ -Destination $target -Force +} + +$bin2 | % { + $target = $results + "/" + (Split-Path -Path (Split-Path -Path $_) -Leaf) + "-1.cs" + cp $_ -Destination $target -Force } \ No newline at end of file