diff options
author | Junkyeong Kim <jk0430.kim@samsung.com> | 2024-06-03 13:45:49 +0900 |
---|---|---|
committer | Junkyeong Kim <jk0430.kim@samsung.com> | 2024-06-03 13:45:53 +0900 |
commit | 451697a59d3063028799354b24ed11bb4ba88a9c (patch) | |
tree | deaf4646507cc62773a1fe7bc288ab9009b11ffd | |
parent | 7ac22f89f8dcfb80eb2e84302dddf034700ffd1b (diff) | |
download | efl-util-451697a59d3063028799354b24ed11bb4ba88a9c.tar.gz efl-util-451697a59d3063028799354b24ed11bb4ba88a9c.tar.bz2 efl-util-451697a59d3063028799354b24ed11bb4ba88a9c.zip |
unittest: Erase unnecessary env export
The test machine do not support long command.(test failed)
So erase unnecessary env export.
Change-Id: I7be3e7b0b66b6410df462db03305ca4adfb5f2be
Signed-off-by: Junkyeong Kim <jk0430.kim@samsung.com>
-rw-r--r-- | packaging/run-unittest.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packaging/run-unittest.sh b/packaging/run-unittest.sh index 7075f0c..c1f76d8 100644 --- a/packaging/run-unittest.sh +++ b/packaging/run-unittest.sh @@ -1,4 +1,4 @@ #!/bin/sh pkill Oobe pkill inputmethod -"export EVAS_FONT_DPI=72; export WAYLAND_DISPLAY=wayland-0; export ECORE_INPUT_CANCEL=1; export ELM_ENGINE=wayland_egl; export USER=root; export ECORE_IMF_MODULE=wayland; export ELM_SCALE=1.8; export ECORE_IMF_INPUT_PANEL_ENABLED=1; export EVAS_GL_NO_BLACKLIST=1; export EVAS_GL_PARTIAL_MERGE=b; export ELM_PROFILE=common; export XDG_RUNTIME_DIR=/run; export ELM_DISPLAY=wl; /usr/bin/capi-ui-efl-util-unittests" +"export ELM_PROFILE=common; export XDG_RUNTIME_DIR=/run; /usr/bin/capi-ui-efl-util-unittests" |