Uploaded image for project: 'Application Server 7'
  1. Application Server 7
  2. AS7-4080

@Ignored tests (tracking)

    XMLWordPrintable

Details

    Description

      Tracking of Jiras referred from @Ignore(...)'d tests.
      See jiras with the as7-ignored label.

      Generally, we should check those which are closed but still @Ignored.

      With files:

      git grep @Ignore | sed 's#\(.*: \).*@Ignore("[^A-Z0-9]*\([A-Z37]\+-[0-9]\+\)[^0-9]*")#\1 \2#g'
      

      Without files, unique:

      git grep @Ignore | sed 's#.*@Ignore("[^A-Z0-9]*\([A-Z37]\+-[0-9]\+\)[^0-9]*")#\1#g' | sort | uniq
      

      For future reference:

      for i in `git grep -l @Ignore | grep testsuite/ | sort | uniq`; do $IDE $i; done
      
      ## Remove @Ignore...
      
      for i in `git grep -l @Ignore | grep testsuite/ | sort | uniq`; do
        TEST_CLASS=`echo $i | sed 's#.*/\(.*\).java#\1#'`;
        echo
        echo " ========== Running $TEST_CLASS ...";
        echo
        ./integration-tests.sh install -Dts.basic -Dtest=*$TEST_CLASS*
      done
      

      Attachments

        Issue Links

          Activity

            People

              ozizka_jira Ondrej Zizka (Inactive)
              ozizka_jira Ondrej Zizka (Inactive)
              Votes:
              0 Vote for this issue
              Watchers:
              1 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: