OSDN Git Service

Add tests from layoutlib to adt-tests
authorXavier Ducrohet <xav@android.com>
Mon, 5 Oct 2009 22:19:38 +0000 (15:19 -0700)
committerXavier Ducrohet <xav@android.com>
Mon, 5 Oct 2009 22:57:17 +0000 (15:57 -0700)
Change-Id: Ia7bac7fad90b77fe34fb4a4371d6d5945993efe9

eclipse/plugins/.gitignore
eclipse/plugins/com.android.ide.eclipse.tests/.classpath
eclipse/plugins/com.android.ide.eclipse.tests/build.properties
eclipse/scripts/create_test_symlinks.sh

index 42a204e..076f284 100644 (file)
@@ -54,4 +54,5 @@ com.android.ide.eclipse.ddms/src/com/android/ddmuilib
 com.android.ide.eclipse.tests/kxml2-2.3.0.jar
 com.android.ide.eclipse.tests/unittests/com/android/ddmlib
 com.android.ide.eclipse.tests/unittests/com/android/sdklib
+com.android.ide.eclipse.tests/unittests/com/android/layoutlib
 
index 5762668..972a548 100644 (file)
@@ -4,8 +4,10 @@
        <classpathentry kind="src" path="unittests"/>
        <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
        <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
-       <classpathentry kind="lib" path="kxml2-2.3.0.jar"/>
+       <classpathentry kind="lib" path="/adt/kxml2-2.3.0.jar"/>
        <classpathentry kind="lib" path="/adt/sdklib.jar" sourcepath="/SdkLib"/>
        <classpathentry kind="lib" path="/adt/layoutlib_api.jar" sourcepath="/layoutlib_api"/>
+       <classpathentry kind="lib" path="/adt/ninepatch.jar"/>
+       <classpathentry kind="lib" path="layoutlib.jar"/>
        <classpathentry kind="output" path="bin"/>
 </classpath>
index 8649a77..4110b98 100644 (file)
@@ -9,4 +9,5 @@ bin.includes = META-INF/,\
                kxml2-2.3.0.jar,\
                unittests/data/,\
                sdklib.jar,\
-               layoutlib_api.jar
+               layoutlib_api.jar,\
+               layoutlib.jar
index 149a142..fa5fd63 100755 (executable)
@@ -31,17 +31,15 @@ BACK=`back $DEST`
 
 HOST=`uname`
 if [ "$HOST" == "Linux" ]; then
-    ln -svf $BACK/out/host/linux-x86/framework/kxml2-2.3.0.jar "$DEST/"
+    ln -svf $BACK/out/host/linux-x86/framework/layoutlib.jar "$DEST/"
 
 elif [ "$HOST" == "Darwin" ]; then
-    ln -svf $BACK/out/host/darwin-x86/framework/kxml2-2.3.0.jar "$DEST/"
+    ln -svf $BACK/out/host/darwin-x86/framework/layoutlib.jar "$DEST/"
 
 elif [ "${HOST:0:6}" == "CYGWIN" ]; then
+    cp -v "$BACK/out/host/windows/framework/layoutlib.jar" "$DEST/"
 
-    if [ ! -f "$DEST/kxml2-2.3.0.jar" ]; then
-        cp -v "prebuilt/common/kxml2/kxml2-2.3.0.jar" "$DEST/"
-        chmod -v a+rx "$DEST"/*.jar
-    fi
+    chmod -v a+rx "$DEST"/*.jar
 
 else
     echo "Unsupported platform ($HOST). Nothing done."
@@ -49,7 +47,10 @@ fi
 
 # create link to ddmlib tests
 DEST=$BASE/unittests/com/android
-BACK=`back $DEST`
 cpdir $DEST development/tools/ddms/libs/ddmlib/tests/src/com/android/ddmlib
 cpdir $DEST development/tools/sdkmanager/libs/sdklib/tests/com/android/sdklib
 
+DEST=$BASE/unittests/com/android/layoutlib
+mkdir $BASE
+cpdir $DEST frameworks/base/tools/layoutlib/bridge/tests/com/android/layoutlib/bridge
+