Files
adareducer/testsuite/tests/powershell/oracle.ps1
Nicolas Setton 97318dfd33 Add support for powershell
And add a test.

For #40.
2024-01-23 14:21:18 +00:00

9 lines
117 B
PowerShell

$result = select-string -Path "hello.adb" -Pattern 'pouet'
if ($result -eq $null) {
exit 1
} else {
exit 0
}