-
-
Notifications
You must be signed in to change notification settings - Fork 52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can not get a path pattern with multiple curly braces to work #233
Comments
You didn't attached the full log so I'm just guessing but it might be a vscode limitation. I'm using For workaround you can try this:
|
I'm closing, let me know if it didn't slove. |
Awesome, thanks again for all the great help! |
It works perfect, thanks! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Checklist
Describe the bug
I'm trying to load tests and benchmarks from different directories, because one is for
Debug
and one is forRelease
builds. My globbing pattern is"pattern": "${os_env:BDASOFTTEMP}/{Debug,Release}/BDAImageAnalysis/*{Test,Benchmark}*",
. But that does not work, the adapter will not find any tests or benchmarks. When I remove the first set of curly braces{Debug,Release}
and replace it with onlyDebug
orRelease
, everything works, but it finds only either the tests or the benchmarks (depending which folder I set). Is it possible that a pattern can not have more than one set of curly braces pattern? Is there a known workaround or a way to add both folders?To Reproduce
Set the
settings.json
toDesktop
The text was updated successfully, but these errors were encountered: