BTW - With the same source… VST2 passes at level 10, and generates:
Starting test: pluginval / Listing available buses…
Inputs:
Named layouts: None
Discrete layouts: None
Outputs:
Named layouts: Stereo, Stereo, Stereo, Stereo, Stereo, Stereo, Stereo, Stereo, Stereo, Stereo, Stereo, Stereo, Stereo, Stereo, Stereo, Stereo
Discrete layouts: None
Main bus num input channels: 0
Main bus num output channels: 2
All tests completed successfully
but VST3 fails at level 5 with:
Starting test: pluginval / Listing available buses…
Inputs:
Named layouts: None
Discrete layouts: None
*** FAILED: Timeout after 30 secs
I have no issues running my plug-in in any host.
My main processor ctor is:
MyAudioProcessor::MyAudioProcessor() : AudioProcessor (BusesProperties()
.withOutput ("Out 1-2", AudioChannelSet::stereo(), true)
.withOutput ("Out 3-4", AudioChannelSet::stereo(), false)
.withOutput ("Out 5-6", AudioChannelSet::stereo(), false)
.withOutput ("Out 7-8", AudioChannelSet::stereo(), false)
.withOutput ("Out 9-10", AudioChannelSet::stereo(), false)
.withOutput ("Out 11-12", AudioChannelSet::stereo(), false)
.withOutput ("Out 13-14", AudioChannelSet::stereo(), false)
.withOutput ("Out 15-16", AudioChannelSet::stereo(), false)
.withOutput ("Out 17-18", AudioChannelSet::stereo(), false)
.withOutput ("Out 19-20", AudioChannelSet::stereo(), false)
.withOutput ("Out 21-22", AudioChannelSet::stereo(), false)
.withOutput ("Out 23-24", AudioChannelSet::stereo(), false)
.withOutput ("Out 25-26", AudioChannelSet::stereo(), false)
.withOutput ("Out 27-28", AudioChannelSet::stereo(), false)
.withOutput ("Out 29-30", AudioChannelSet::stereo(), false)
.withOutput ("Out 31-32", AudioChannelSet::stereo(), false)
),
:
Rail