History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: IDEA-16299
Type: Bug Bug
Status: Open Open
Assignee: Eugene Zhuravlev
Reporter: Yegor Yarko
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
IDEA: Feedback

Ctrl+Shift+F7 does not find the text under it (build.xml case)

Created: 12 Nov 07 11:37   Updated: 12 Nov 07 12:08
Component/s: Editor. Editing Text

Build: 7,531
Severity: High


 Description  « Hide
For the XML file with contents as below, position caret over "failure_found" in the last target and Ctrl+Shift+F7:
  • "failure_found" in the firt target is not found
  • "check_failures" is highlighted in the last target instead of "failure_found".
<?xml version="1.0" encoding="ISO-8859-1"?>
<project name="tmp-build.xml" default="all">


    <target name="tests">
        <junit printsummary="on" fork="true" haltonfailure="false" failureproperty="failure_found" showoutput="true">
        </junit>

    </target>

    <target name="check_failures" if="failure_found">  <fail message="Failures found"/> </target>

</project>


 All   Comments   Work Log   Change History      Sort Order:
There are no comments yet on this issue.