-
Notifications
You must be signed in to change notification settings - Fork 203
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
Kernel name with leading x character throws exception #59
Comments
I mean this exception in qa_utils.cc:376:
|
Hey Stefan, not intended but not something anyone has complained about. If the fix is as easy as I think it might be I can fix it, otherwise it's kind of a niche feature (especially the x case) that it might be a do not fix. |
I'm guessing this is the signature parsing code not knowing when it's parsing signatures (ala x2 or x3 to signify multiple inputs of the same type) vs. when it is getting to the name of the kernel. I'm not confident there is an unamiguous way for the parser to know this in advance - except to check if the second character is a digit or not - which basically just makes x[0-9]+ a special (not-allowed at the beginning of the name) vs. just x* being special. |
Fixed |
Fixes GH issue gnuradio#59
Hi,
A kernel with the name volk_32f_x2_x_32f throws an exception during ctest. The problem is simply a leading x in the kernel name "x", which looks like the "x" of the input signiture.
If this is known and intended, just close the issue!
Greetings
Stefan
The text was updated successfully, but these errors were encountered: