You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Previously the unit tests were creating the wrong env to test:
internal/arduino/libraries/testdata/TestLib
├── examples
│ ├── UpGoer1 -> testdata/TestLib
│ └── UpGoer2 -> testdata/TestLib
├── library.properties
└── src
└── TestLib.h
The two UpGoer1 and UpGoer2 are broken links.
The correct tree is the following:
internal/arduino/libraries/testdata/TestLib
├── examples
│ ├── UpGoer1 -> ..
│ └── UpGoer2 -> ..
├── library.properties
└── src
└── TestLib.h
that actually triggers the symlink loop we are testing.
0 commit comments