Repository: flex-falcon Updated Branches: refs/heads/develop 63f75cf46 -> 00c0b4153
Added a check to throw a meaningfull exception if no FLASHPLAYER_DEBUGGER environment variable is set. Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/00c0b415 Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/00c0b415 Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/00c0b415 Branch: refs/heads/develop Commit: 00c0b4153eb391450cb6f0bed371d569c87dd675 Parents: 63f75cf Author: Christofer Dutz <[email protected]> Authored: Sat Mar 19 18:12:52 2016 +0100 Committer: Christofer Dutz <[email protected]> Committed: Sat Mar 19 18:12:52 2016 +0100 ---------------------------------------------------------------------- compiler.tests/src/org/apache/flex/utils/MavenTestAdapter.java | 3 +++ 1 file changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/00c0b415/compiler.tests/src/org/apache/flex/utils/MavenTestAdapter.java ---------------------------------------------------------------------- diff --git a/compiler.tests/src/org/apache/flex/utils/MavenTestAdapter.java b/compiler.tests/src/org/apache/flex/utils/MavenTestAdapter.java index 9e87e3b..457249d 100644 --- a/compiler.tests/src/org/apache/flex/utils/MavenTestAdapter.java +++ b/compiler.tests/src/org/apache/flex/utils/MavenTestAdapter.java @@ -74,6 +74,9 @@ public class MavenTestAdapter implements ITestAdapter { // TODO: If the archive isn't unpacked, unpack it. // TODO: Return a reference to the player debugger executable, depending on the current platform. String FLASHPLAYER_DEBUGGER = System.getProperty("FLASHPLAYER_DEBUGGER", null); + if(FLASHPLAYER_DEBUGGER == null || FLASHPLAYER_DEBUGGER.length() == 0) { + throw new RuntimeException("You have to specify the location of the flash debug player executable."); + } return new File(FLASHPLAYER_DEBUGGER); /*return getDependency("com.adobe.flash.runtime", "player-debugger", System.getProperty("flashVersion"), "zip", null);*/
