Skip to content

Commit

Permalink
auval -stress defaults to 20 seconds (vs default 600) (#135)
Browse files Browse the repository at this point in the history
  • Loading branch information
sudara authored Nov 27, 2024
1 parent 6b028fd commit a9b0c4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/tests/BasicTests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -689,7 +689,7 @@ struct AUvalTest : public PluginTest
return;

// Use -stress on strictness levels greater than 5
const auto cmd = juce::String ("auval -strict STRESS -v ").replace ("STRESS", ut.getOptions().strictnessLevel > 5 ? "-stress" : "")
const auto cmd = juce::String ("auval -strict STRESS -v ").replace ("STRESS", ut.getOptions().strictnessLevel > 5 ? "-stress 20" : "")
+ desc.fileOrIdentifier.fromLastOccurrenceOf ("/", false, false).replace (",", " ");

juce::ChildProcess cp;
Expand Down

0 comments on commit a9b0c4f

Please sign in to comment.