[TESTBUG] fix 'test/tools/launcher/ExecutionEnvironment.java' to run on arbitrary *nix systems

XMLWordPrintable

    • Type: Bug
    • Resolution: Fixed
    • Priority: P4
    • 9
    • Affects Version/s: None
    • Component/s: tools
    • b63
    • Verified

        The test 'test/tools/launcher/ExecutionEnvironment.java' needs a special handling on Solaris. But instead of doing:

        if (TestHelper.isSolaris) { ... } else { ... }

        it goes the other way round:

        if (TestHelper.isLinux || TestHelper.isMacOSX || TestHelper.isAIX) { ... } else { /* Solaris */ ... }

        Fix the test to explicitly check for Solaris. This will make it possible to also run the test on other operating systems without the need to explicitly name them.

              Assignee:
              Volker Simonis
              Reporter:
              Volker Simonis
              Votes:
              0 Vote for this issue
              Watchers:
              5 Start watching this issue

                Created:
                Updated:
                Resolved: