Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(72)

Unified Diff: Makefile

Issue 6736023: Install test scripts into chroot. (Closed) Base URL: http://git.chromium.org/git/crostestutils.git@master
Patch Set: Fix path for chroot Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | au_test_harness/real_au_worker.py » ('j') | cros_run_vm_test » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Makefile
diff --git a/Makefile b/Makefile
index 60da986090904c02d6a41d8d9291e673982cc8e2..f3d7487bf5b4457688262ec0523559d312c4831c 100644
--- a/Makefile
+++ b/Makefile
@@ -8,8 +8,21 @@ test_scripts:
@echo "Preparing test scripts."
install:
- mkdir -p ${DESTDIR}/usr/bin
- mkdir -p ${DESTDIR}/usr/share/crostestutils
- install -m 0755 cros_run_unit_tests ${DESTDIR}/usr/bin
- install -m 0644 unit_test_black_list.txt ${DESTDIR}/usr/share/crostestutils
+ mkdir -p "${DESTDIR}/usr/bin"
+ mkdir -p "${DESTDIR}/usr/lib/crostestutils"
+ mkdir -p "${DESTDIR}/usr/share/crostestutils"
+ install -m 0644 lib/constants.py "${DESTDIR}/usr/lib/crostestutils"
+ install -m 0755 cros_run_unit_tests "${DESTDIR}/usr/bin"
+ install -m 0755 cros_run_vm_test ${DESTDIR}/usr/bin
+ install -m 0755 run_remote_tests.sh ${DESTDIR}/usr/bin
+ install -m 0644 unit_test_black_list.txt "${DESTDIR}/usr/share/crostestutils"
petkov 2011/03/30 14:32:16 80 chars
sosa 2011/03/30 18:35:50 Done.
+ install -m 0755 utils_py/cros_run_parallel_vm_tests.py \
+ "${DESTDIR}/usr/lib/crostestutils"
+ install -m 0755 utils_py/generate_test_report.py \
+ "${DESTDIR}/usr/lib/crostestutils"
+ # Make symlink for those python files in lib.
petkov 2011/03/30 14:32:16 symlinks
sosa 2011/03/30 18:35:50 Done.
+ ln -s "${DESTDIR}/usr/lib/crostestutils/cros_run_parallel_vm_tests.py" \
+ "${DESTDIR}/usr/bin/cros_run_parallel_vm_tests"
+ ln -s "${DESTDIR}/usr/lib/crostestutils/generate_test_report.py" \
+ "${DESTDIR}/usr/bin/generate_test_report"
« no previous file with comments | « no previous file | au_test_harness/real_au_worker.py » ('j') | cros_run_vm_test » ('J')

Powered by Google App Engine
This is Rietveld 408576698