summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorChristopher Wiley <wiley@google.com>2016-08-18 16:15:52 -0700
committerChristopher Wiley <wiley@google.com>2016-08-19 11:21:16 -0700
commitcce25d35d2ee5a80568eec4d504f65fa790473d4 (patch)
tree4e8b5d183684626477483507b5a3ca53d90dac04 /docs
parent9d7810ac16dc170e7b24974b0f7de6482c13911d (diff)
downloadandroid_system_tools_aidl-cce25d35d2ee5a80568eec4d504f65fa790473d4.tar.gz
android_system_tools_aidl-cce25d35d2ee5a80568eec4d504f65fa790473d4.tar.bz2
android_system_tools_aidl-cce25d35d2ee5a80568eec4d504f65fa790473d4.zip
Add a simple all in one testing script
Just run ./runtests.sh, and if you don't get obvious errors, you must be doing it right. Change-Id: Iaf88b160809a74a90020e54840bb8c4b2d10b133
Diffstat (limited to 'docs')
-rw-r--r--docs/making-changes.md7
1 files changed, 1 insertions, 6 deletions
diff --git a/docs/making-changes.md b/docs/making-changes.md
index f0e94d5..ac84b86 100644
--- a/docs/making-changes.md
+++ b/docs/making-changes.md
@@ -16,11 +16,6 @@ This codebase has both integration and unittests, all of which are expected to
consistently pass against a device/emulator:
```
-$ mmma system/tools/aidl && \
- out/host/linux-x86/nativetest64/aidl_unittests/aidl_unittests && \
- adb remount && adb sync && \
- adb install -r `find out/ -name aidl_test_services.apk` && \
- (pushd system/tools/aidl/ && tests/integration-test.py) && \
- echo "All tests pass"
+$ ./runtests.sh && echo "All tests pass"
```