Join GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign upUse of fullstop character in --%context(<name>) #966
Labels
Comments
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the bug
Using a full stop character in
--%context(<name>)
will cause all other contexts in the suite to be executed under an entirely different suite as seen in the output section below. The reason for this I believe is because the way a context name is interpreted as a path to allow users to execute specific contexts.Version Info
utPLSQL: v3.1.6.2735
SQL Developer: 19.1.0.094
To Reproduce
1. Create tests
2. Add a full stop in a context name
--%context(suite_2. context_2)
3. Run tests
Outputs
Expected output:
Actual output:
Expected behavior
When a full stop is present in
--%context(<name>)
the other contexts in the suite shouldn't be executed under another suite.