2026-03-27 14:12:49 +01:00
|
|
|
# /********************************************************************************
|
|
|
|
|
# Copyright (c) 2025-2026 ZF Friedrichshafen AG
|
|
|
|
|
#
|
|
|
|
|
# This program and the accompanying materials are made available under the
|
|
|
|
|
# terms of the Apache License Version 2.0 which is available at
|
|
|
|
|
# https://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
#
|
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
# ********************************************************************************/
|
|
|
|
|
#
|
|
|
|
|
#
|
|
|
|
|
#
|
2025-11-04 13:28:06 +01:00
|
|
|
<#
|
|
|
|
|
.SYNOPSIS
|
|
|
|
|
PowerShell script to loop a specific test executable multiple times to catch intermittent failures.
|
|
|
|
|
|
|
|
|
|
.DESCRIPTION
|
|
|
|
|
Usage: .\loop_test_runner.ps1 <TestName> <NumberOfRuns>
|
|
|
|
|
Example: .\loop_test_runner.ps1 UnitTest_SharedMemConnectTests.exe 1000
|
|
|
|
|
#>
|
|
|
|
|
|
|
|
|
|
param (
|
|
|
|
|
[Parameter(Mandatory = $true)]
|
|
|
|
|
[string]$TestName,
|
|
|
|
|
|
|
|
|
|
[Parameter(Mandatory = $true)]
|
|
|
|
|
[int]$NumberOfRuns
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
# Build the full path to the test executable
|
2026-03-27 14:12:49 +01:00
|
|
|
$TargetTest = Join-Path "bin" $TestName
|
2025-11-04 13:28:06 +01:00
|
|
|
|
|
|
|
|
# Check if the test executable exists
|
|
|
|
|
if (Test-Path $TargetTest) {
|
|
|
|
|
Write-Host "`nStarting looped execution of $TargetTest to catch intermittent failures..." -ForegroundColor Cyan
|
|
|
|
|
|
|
|
|
|
for ($i = 1; $i -le $NumberOfRuns; $i++) {
|
|
|
|
|
Write-Host "`nRun #$i" -ForegroundColor Yellow
|
|
|
|
|
& $TargetTest
|
|
|
|
|
if ($LASTEXITCODE -ne 0) {
|
|
|
|
|
Write-Host "`nTest failed on run #$i" -ForegroundColor Red
|
|
|
|
|
break
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
Write-Host "Target test $TargetTest not found!" -ForegroundColor Red
|
|
|
|
|
exit 1
|
|
|
|
|
}
|