Skip to content

Commit 0a6ef1b

Browse files
committed
Use full path in opcache.file_cache
1 parent f8c221c commit 0a6ef1b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

php/BuildPhp/private/Get-TestsList.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ function Get-TestsList {
2525
foreach ($line in Get-Content "$PSScriptRoot\..\config\${Type}_test_directories") {
2626
$ttr = Get-ChildItem -Path $line -Filter "*.phpt" -Recurse
2727
foreach ($t in $ttr) {
28-
Add-Content $OutputFile ($t | Resolve-Path -Relative)
28+
Add-Content $OutputFile $t.FullName
2929
}
3030
}
3131
}
3232
end {
3333
}
34-
}
34+
}

0 commit comments

Comments
 (0)