Remove implicit launch resolution 88/244588/8
authorHwankyu Jhun <h.jhun@samsung.com>
Tue, 22 Sep 2020 06:16:59 +0000 (15:16 +0900)
committerHwankyu Jhun <h.jhun@samsung.com>
Fri, 25 Sep 2020 05:04:38 +0000 (14:04 +0900)
commitd5ef31b45f46acf1ac0a93e1e0c6680e619c6283
tree3b01e2ff945d4dcdd27a178e512d49f3a7d91c6e
parent552d7faaed436757481319807a78b3b249f4b232
Remove implicit launch resolution

To improve implicit launch performance, AMD finds the matched
applications when getting the implicit launch request.
This patch adds an executable file that is app-control-tests.
We can test implicit launch using app-control-tests.

Requires:
 - https://review.tizen.org/gerrit/#/c/platform/core/appfw/amd/+/244538/

Change-Id: Ib619e9b85a6cfdefef99bf7b380d3c29c1f571e9
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
30 files changed:
CMakeLists.txt
include/aul_cmd.h
include/aul_key.h
include/aul_svc_internal.h
packaging/aul.spec
src/aul_cmd.c
src/service.c
test/CMakeLists.txt
test/app_control_tests/CMakeLists.txt [new file with mode: 0644]
test/app_control_tests/main.cc [new file with mode: 0644]
test/app_control_tests/mock/mock_hook.h [new file with mode: 0644]
test/app_control_tests/mock/module_mock.h [new file with mode: 0644]
test/app_control_tests/mock/test_fixture.cc [new file with mode: 0644]
test/app_control_tests/mock/test_fixture.h [new file with mode: 0644]
test/app_control_tests/res/images/giraffe_800_1179.jpg [new file with mode: 0644]
test/app_control_tests/res/images/plane_1024_768.png [new file with mode: 0644]
test/app_control_tests/res/images/squee.gif [new file with mode: 0644]
test/app_control_tests/res/images/zebra_1024_680.bmp [new file with mode: 0644]
test/app_control_tests/res/sounds/SampleAAC.aac [new file with mode: 0644]
test/app_control_tests/res/sounds/SampleAMR.amr [new file with mode: 0644]
test/app_control_tests/res/sounds/SampleMP3.mp3 [new file with mode: 0644]
test/app_control_tests/res/sounds/SampleWAV.wav [new file with mode: 0644]
test/app_control_tests/res/tpk/install.sh [new file with mode: 0755]
test/app_control_tests/res/tpk/org.tizen.example.OperationPick-1.0.0.tpk [new file with mode: 0755]
test/app_control_tests/res/tpk/org.tizen.example.OperationView-1.0.0.tpk [new file with mode: 0755]
test/app_control_tests/res/videos/sampleH263.3gp [new file with mode: 0644]
test/app_control_tests/res/videos/sampleH264.mp4 [new file with mode: 0644]
test/app_control_tests/res/videos/sampleMPEG4.mp4 [new file with mode: 0644]
test/app_control_tests/test_app_control.cc [new file with mode: 0644]
test/unit_tests/CMakeLists.txt