Added new test target in makefile
This commit is contained in:
parent
e80e7f156d
commit
892f7e396f
1 changed files with 12 additions and 2 deletions
14
Makefile
14
Makefile
|
@ -337,7 +337,7 @@ release: update-project
|
|||
run-linphone:
|
||||
ant run
|
||||
|
||||
run-tests:
|
||||
run-basic-tests:
|
||||
ant partial-clean && \
|
||||
$(SDK_PLATFORM_TOOLS_PATH)/adb uninstall org.linphone.test
|
||||
$(SDK_PLATFORM_TOOLS_PATH)/adb uninstall org.linphone
|
||||
|
@ -345,7 +345,17 @@ run-tests:
|
|||
$(SDK_PATH)/android update test-project --path . -m ../ && \
|
||||
ant debug && \
|
||||
ant installd && \
|
||||
adb shell am instrument -w -e size large org.linphone.test/android.test.InstrumentationTestRunner
|
||||
adb shell am instrument -w -e size small org.linphone.test/android.test.InstrumentationTestRunner
|
||||
|
||||
run-all-tests:
|
||||
ant partial-clean && \
|
||||
$(SDK_PLATFORM_TOOLS_PATH)/adb uninstall org.linphone.test
|
||||
$(SDK_PLATFORM_TOOLS_PATH)/adb uninstall org.linphone
|
||||
@cd $(TOPDIR)/tests/ && \
|
||||
$(SDK_PATH)/android update test-project --path . -m ../ && \
|
||||
ant debug && \
|
||||
ant installd && \
|
||||
adb shell am instrument -w -e size large org.linphone.test/android.test.InstrumentationTestRunner
|
||||
|
||||
clean-ndk-build:
|
||||
$(NDK_PATH)/ndk-build clean $(LIBLINPHONE_OPTIONS)
|
||||
|
|
Loading…
Reference in a new issue