Skip to content

Commit 74e6efa

Browse files
committed
Fix plugin path resolution in PluginManagerTest for Windows
1 parent 6b14750 commit 74e6efa

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Tests/Processors/PluginManagerTests.cpp

+6-1
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,15 @@ class PluginManagerTest : public testing::Test
77
protected:
88
void SetUp() override
99
{
10+
#ifdef JUCE_WINDOWS
11+
files =
12+
File::getCurrentWorkingDirectory().getChildFile ("../../ArduinoOutput").findChildFiles (File::findFiles, true, "ArduinoOutput.*", File::FollowSymlinks::no);
13+
#else
1014
files =
1115
File::getCurrentWorkingDirectory().getChildFile ("../ArduinoOutput").findChildFiles (File::findFiles, false, "ArduinoOutput.*", File::FollowSymlinks::no);
16+
#endif
1217

13-
ASSERT_EQ (files.size(), 1);
18+
ASSERT_EQ (files.size(), 1) << "Arduino Ouput plugin not found. Make sure to build the plugin tests before running the tests.";
1419

1520
String path = files[0].getFullPathName();
1621

0 commit comments

Comments
 (0)