You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by er...@apache.org on 2013/10/01 07:49:40 UTC

git commit: [flex-falcon] [refs/heads/develop] - Fixed missing assert for null value of TLF_HOME environment variable.

Updated Branches:
  refs/heads/develop 327a61434 -> b8643df18


Fixed missing assert for null value of TLF_HOME environment variable.

Signed-off-by: Erik de Bruin <er...@ixsoftware.nl>


Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/b8643df1
Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/b8643df1
Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/b8643df1

Branch: refs/heads/develop
Commit: b8643df18dcc32a11a35fd44c5a71549edc95fda
Parents: 327a614
Author: Erik de Bruin <er...@ixsoftware.nl>
Authored: Tue Oct 1 07:49:13 2013 +0200
Committer: Erik de Bruin <er...@ixsoftware.nl>
Committed: Tue Oct 1 07:49:13 2013 +0200

----------------------------------------------------------------------
 compiler.tests/functional-tests/f/SDKSWCTests.java | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/b8643df1/compiler.tests/functional-tests/f/SDKSWCTests.java
----------------------------------------------------------------------
diff --git a/compiler.tests/functional-tests/f/SDKSWCTests.java b/compiler.tests/functional-tests/f/SDKSWCTests.java
index 28d66c0..66c91ea 100644
--- a/compiler.tests/functional-tests/f/SDKSWCTests.java
+++ b/compiler.tests/functional-tests/f/SDKSWCTests.java
@@ -60,6 +60,7 @@ public class SDKSWCTests
 		assertNotNull("FLEX_HOME not set in unittest.properties", env.SDK);
 		assertNotNull("PLAYERGLOBAL_HOME not set in unittest.properties", env.FPSDK);
 		assertNotNull("AIR_HOME not set in unittest.properties", env.AIRSDK);
+        assertNotNull("TLF_HOME not set in unittest.properties", env.TLF);
 		
 		System.setProperty("flexlib", env.SDK + "/frameworks");