Skip to content

Commit

Permalink
Up Lipo Verify Timeout
Browse files Browse the repository at this point in the history
Summary:
We're seeing dynamic test listing timeout sometimes.

i.e.
```
Failed to list tests. Expected exit code 0 but received: ExitStatus(unix_wait_status(1))
STDOUT:
STDERR:Timed out after 10.000000 seconds waiting for lipo -verify_arch
```

https://www.internalfb.com/intern/testinfra/diagnostics/14355223877670487.562950114383940.1737644366/

Could it be worth trying a longer timeout?

Differential Revision: D68596991

fbshipit-source-id: 210726bd0f53f280c6d56a4400214014aa57df23
  • Loading branch information
Mark Bridges authored and facebook-github-bot committed Jan 24, 2025
1 parent 4d5165b commit 83f6ee7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FBControlCore/Configuration/FBArchitectureProcessAdapter.m
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ - (nullable FBArchitecture)selectArchitectureFrom:(NSSet<FBArchitecture> *)reque
runUntilCompletionWithAcceptableExitCodes:[NSSet setWithObject:@0]]
rephraseFailure:@"Desired architecture %@ not found in %@ binary", architecture, binary]
mapReplace:[NSNull null]]
timeout:10 waitingFor:@"lipo -verify_arch"];
timeout:20 waitingFor:@"lipo -verify_arch"];
}

-(FBFuture<NSString *> *)extractArchitecture:(FBArchitecture)architecture processConfiguration:(FBProcessSpawnConfiguration *)processConfiguration queue:(dispatch_queue_t)queue outputPath:(NSURL *)outputPath {
Expand Down

0 comments on commit 83f6ee7

Please sign in to comment.