Changeset 824208bf in mainline
- Timestamp:
- 2014-09-19T10:44:48Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- bf45993
- Parents:
- 865b981
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
HelenOS.config
r865b981 r824208bf 603 603 ! CONFIG_PCUT_TESTS (n/y) 604 604 605 % Include PCUT self-tests 606 ! CONFIG_PCUT_SELF_TESTS (n/y) 607 605 608 % Include development files (headers, libraries) 606 609 ! CONFIG_DEVEL_FILES (n/y) -
boot/Makefile
r865b981 r824208bf 85 85 endif 86 86 87 ifeq ($(CONFIG_PCUT_SELF_TESTS),y) 88 echo "echo Running all PCUT self-tests..." >"$(DIST_PATH)/test/run_pcut" 89 echo "<html><head><title>Results of PCUT self-tests on HelenOS</title></head><body>" >"$(DIST_PATH)/test/pcut.html" 90 echo "<h1>Results of PCUT self-tests on HelenOS</h1><ul>" >>"$(DIST_PATH)/test/pcut.html" 91 for file in $(USPACE_PATH)/lib/pcut/test-libpcut-*; do \ 92 file2=`basename $$file`; \ 93 name=`echo "$$file2" | sed 's/test-libpcut-//'`; \ 94 cp "$$file" "$(DIST_PATH)/test/" ; \ 95 echo "echo ' ->' $$name" >>"$(DIST_PATH)/test/run_pcut"; \ 96 echo "/test/$$file2 | to /test/$$file2.out" >>"$(DIST_PATH)/test/run_pcut"; \ 97 echo "cat /test/$$file2.out" >>"$(DIST_PATH)/test/run_pcut"; \ 98 echo "cp -f /test/$$file2.out /data/web/result-$$file2.txt" >>"$(DIST_PATH)/test/run_pcut"; \ 99 echo "<li><a href=\"result-$$file2.txt\">$$name</a></li>" >>"$(DIST_PATH)/test/pcut.html"; \ 100 done 101 echo "cp -f /test/pcut.html /data/web/pcut.html" >>"$(DIST_PATH)/test/run_pcut" 102 echo "</ul></body></html>" >>"$(DIST_PATH)/test/pcut.html" 103 endif 104 87 105 for drv in $(RD_DRVS) ; do \ 88 106 drv_dir="`dirname "$$drv"`" ; \
Note:
See TracChangeset
for help on using the changeset viewer.