summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeokYeon Hwang <syeon.hwang@samsung.com>2013-10-04 09:50:34 +0900
committerSeokYeon Hwang <syeon.hwang@samsung.com>2013-10-04 09:50:34 +0900
commit894f37f455a9fd0668ae41c5637c2e5691afdd78 (patch)
tree9404e3179aea6f26945ee72679efec2d10967607
parent35d90cfc6e80047825517b24bc73a8bdbc0f3ec3 (diff)
downloademulator-test-894f37f455a9fd0668ae41c5637c2e5691afdd78.tar.gz
emulator-test-894f37f455a9fd0668ae41c5637c2e5691afdd78.tar.bz2
emulator-test-894f37f455a9fd0668ae41c5637c2e5691afdd78.zip
Remove emulator-test install script.
Remove script because it causes a dibs error. Change-Id: Icabea6dff272bbc337ce1c5b98dbf0b7bf9a0a33 Signed-off-by: SeokYeon Hwang <syeon.hwang@samsung.com>
-rwxr-xr-xpackage/emulator-test.install.linux30
-rwxr-xr-xpackage/emulator-test.install.macos-6430
-rwxr-xr-xpackage/emulator-test.install.windows26
3 files changed, 0 insertions, 86 deletions
diff --git a/package/emulator-test.install.linux b/package/emulator-test.install.linux
deleted file mode 100755
index ddfa1ea..0000000
--- a/package/emulator-test.install.linux
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/bin/sh
-
-
-## Do not modify the followings (Make desktop menu)
-TIZEN_SDK_INSTALL_PATH=`echo $INSTALLED_PATH`
-if [ -z $TIZEN_SDK_INSTALL_PATH ]
-then
- exit 2;
-fi
-
-tizen_data_path="${HOME}/tizen-sdk-data"
-
-config_path=$TIZEN_SDK_INSTALL_PATH/tools/emulator/test/script/config.lua
-
-mkdir -p $tizen_data_path/test
-
-if [ -f $tizen_data_path/test/config.lua ]
-then
- echo "config.lua file already exist, skip copy..."
-else
- cp -f $config_path $tizen_data_path/test
-fi
-
-if [ -f $config_path ]
-then
- rm -rf $config_path.bak
- mv $config_path $config_path.bak
-fi
-
-
diff --git a/package/emulator-test.install.macos-64 b/package/emulator-test.install.macos-64
deleted file mode 100755
index ddfa1ea..0000000
--- a/package/emulator-test.install.macos-64
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/bin/sh
-
-
-## Do not modify the followings (Make desktop menu)
-TIZEN_SDK_INSTALL_PATH=`echo $INSTALLED_PATH`
-if [ -z $TIZEN_SDK_INSTALL_PATH ]
-then
- exit 2;
-fi
-
-tizen_data_path="${HOME}/tizen-sdk-data"
-
-config_path=$TIZEN_SDK_INSTALL_PATH/tools/emulator/test/script/config.lua
-
-mkdir -p $tizen_data_path/test
-
-if [ -f $tizen_data_path/test/config.lua ]
-then
- echo "config.lua file already exist, skip copy..."
-else
- cp -f $config_path $tizen_data_path/test
-fi
-
-if [ -f $config_path ]
-then
- rm -rf $config_path.bak
- mv $config_path $config_path.bak
-fi
-
-
diff --git a/package/emulator-test.install.windows b/package/emulator-test.install.windows
deleted file mode 100755
index 44bd45f..0000000
--- a/package/emulator-test.install.windows
+++ /dev/null
@@ -1,26 +0,0 @@
-rem @ECHO OFF
-
-set config_lua_file=tools\emulator\test\script\config.lua
-
-set src_config_lua_file=%INSTALLED_PATH%\%config_lua_file%
-
-set sdk_data_path=%localappdata%\tizen-sdk-data
-set test_data_path=%sdk_data_path%\test
-
-set dst_config_lua_file=%test_data_path%\config.lua
-
-echo copy config.lua file...
-
-IF NOT EXIST %dst_config_lua_file% (
-mkdir %test_data_path%
-cp -f %src_config_lua_file% %test_data_path%
-)
-
-echo backup config.lua.bak file...
-
-IF EXIST %src_config_lua_file% (
-del %src_config_lua_file%.bak
-mv -f %src_config_lua_file% %src_config_lua_file%.bak
-)
-
-echo COMPLETE