[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] scratch/merge-cedet-tests 558874e 169/316: Update comments
From: |
Edward John Steere |
Subject: |
[Emacs-diffs] scratch/merge-cedet-tests 558874e 169/316: Update comments |
Date: |
Sat, 28 Jan 2017 09:09:57 +0000 (UTC) |
branch: scratch/merge-cedet-tests
commit 558874ec4fed79ab2ca275a35de411c298b8dabb
Author: zappo <address@hidden>
Commit: Edward John Steere <address@hidden>
Update comments
* test/manual/cedet/cedet-integ-test.el (cedet-integ-test,
cit-srecode-fill, cit-srecode-fill-with-stuff): Updated comments.
---
test/manual/cedet/cedet-integ-test.el | 17 ++++++++++++++---
1 file changed, 14 insertions(+), 3 deletions(-)
diff --git a/test/manual/cedet/cedet-integ-test.el
b/test/manual/cedet/cedet-integ-test.el
index d2c1425..b05b32c 100644
--- a/test/manual/cedet/cedet-integ-test.el
+++ b/test/manual/cedet/cedet-integ-test.el
@@ -44,14 +44,14 @@
;; c Use a template to build some C++ templates
;; d SRecode to load the new template and construct some sources.
;;
-;; 5) Semantic to parse stuff
+;; 3) Semantic to parse stuff
;; a Parse the sources
;; b Use srecode to make more sources
;; c test the incremental parsers.
;; d test the completion engine.
;; e Save semanticdb tables. Are the files there?
;;
-;; 6) Delete the project
+;; 4) Delete the project
;; a Make sure the semanticdb cleans up the dead cache files.
;; b Make sure EDE clears this project from it's project cache.
@@ -65,6 +65,7 @@
;; 1 a) build directories
;;
(cit-make-dir cedet-integ-target)
+ ;; 1 c) make src and include directories
(cit-make-dir (cit-file "src"))
(cit-make-dir (cit-file "include"))
;;
@@ -72,7 +73,7 @@
;;
(find-file (expand-file-name "README" cedet-integ-target))
(ede-new "Make" "CEDET Integ Test Project")
- ;;
+ ;; 1 d) Put C++ src into the right directories.
;; 2 a) Create sources with SRecode
;;
(cit-srecode-fill)
@@ -158,17 +159,22 @@ Append FILENAME to the target directory."
(defun cit-srecode-fill ()
"Fill up a base set of files with some base tags."
+ ;; 2 b) Test various templates.
+
(cit-srecode-fill-with-stuff "include/foo.hh" cit-header-tags)
(ede-new "Make" "Includes")
+ ;; 1 e) Tell EDE where the srcs are
(ede-new-target "Includes" "miscelaneous" "n")
(ede-add-file "Includes")
(cit-srecode-fill-with-stuff "src/foo.cpp" cit-src-tags)
(ede-new "Make" "Src")
+ ;; 1 e) Tell EDE where the srcs are
(ede-new-target "Prog" "program" "n")
(ede-add-file "Prog")
(cit-srecode-fill-with-stuff "src/main.cpp" cit-main-tags)
+ ;; 1 e) Tell EDE where the srcs are
(ede-add-file "Prog")
(let ((p (ede-current-project)))
@@ -177,7 +183,9 @@ Append FILENAME to the target directory."
)
(find-file "../Project.ede")
+ ;; 1 f) Create a build file.
(ede-proj-regenerate)
+ ;; 1 g) build the sources.
(compile "make")
)
@@ -196,6 +204,7 @@ Argument TAGS is the list of tags to insert into FILENAME."
(erase-buffer)
(srecode-insert "file:empty")
+ ;; 3 a) Parse the sources
(setq post-empty-tags (semantic-fetch-tags))
;;
@@ -204,6 +213,8 @@ Argument TAGS is the list of tags to insert into FILENAME."
(dolist (tag tags)
(sit-for 0)
+ ;; 3 b) Srecode to make more sources
+ ;; 3 c) Test incremental parsers (by side-effect)
(let ((e (srecode-semantic-insert-tag tag)))
(goto-char e)
- [Emacs-diffs] scratch/merge-cedet-tests 47b5933 185/316: Move compilation error handling to new function, (continued)
- [Emacs-diffs] scratch/merge-cedet-tests 47b5933 185/316: Move compilation error handling to new function, Edward John Steere, 2017/01/28
- [Emacs-diffs] scratch/merge-cedet-tests 2c1d730 190/316: Ignore Members On Extra Tags, Edward John Steere, 2017/01/28
- [Emacs-diffs] scratch/merge-cedet-tests 7661178 186/316: Improve compilation error checking, Edward John Steere, 2017/01/28
- [Emacs-diffs] scratch/merge-cedet-tests de289a9 189/316: Compare Code And Documtation For Tags, Edward John Steere, 2017/01/28
- [Emacs-diffs] scratch/merge-cedet-tests 3800edd 194/316: Fix provide. (cedet-uutil, srecode/semantic): New requires., Edward John Steere, 2017/01/28
- [Emacs-diffs] scratch/merge-cedet-tests a7281aa 202/316: Fix EIEIO methodinvoke-utest and semantic-fmt-utest., Edward John Steere, 2017/01/28
- [Emacs-diffs] scratch/merge-cedet-tests 24be9ac 184/316: Insert tag's code if it's there, Edward John Steere, 2017/01/28
- [Emacs-diffs] scratch/merge-cedet-tests 9ec7a1b 161/316: Move tests in cedet/semantic, Edward John Steere, 2017/01/28
- [Emacs-diffs] scratch/merge-cedet-tests a40bc3f 191/316: (Cit-Android): New Require. (Cedet-Integ-Test-Gnustep): Fix Typo. (Cedet-Integ-Test-Android): New Build Type Support For Android. (Cit-Make-Dir): Allow Making Trees Of Directories. (Cit-Compile-And-Wait): Only Regenerate The Project If That Project Type Can Be Regenerated. (Cit-Compile-And-Wait-Using-Ede-Command): New Way To Build That Uses Ede Commands Instead Of Hard-Coded Make Commands., Edward John Steere, 2017/01/28
- [Emacs-diffs] scratch/merge-cedet-tests 6bbf499 171/316: (cit-srec): New require (cedet-integ-test): Call srec test., Edward John Steere, 2017/01/28
- [Emacs-diffs] scratch/merge-cedet-tests 558874e 169/316: Update comments,
Edward John Steere <=
- [Emacs-diffs] scratch/merge-cedet-tests ede9f83 214/316: Simplify alias referencing and add tests., Edward John Steere, 2017/01/28
- [Emacs-diffs] scratch/merge-cedet-tests 1d09e4c 217/316: C++: Deal with 'using' statements when calculating scope, Edward John Steere, 2017/01/28
- [Emacs-diffs] scratch/merge-cedet-tests e267436 232/316: Move tests in cedet/semantic, Edward John Steere, 2017/01/28
- [Emacs-diffs] scratch/merge-cedet-tests 29a5165 216/316: C/C++: Parse 'using' statements in the correct order., Edward John Steere, 2017/01/28
- [Emacs-diffs] scratch/merge-cedet-tests e7118b0 221/316: Move tests in cedet/semantic, Edward John Steere, 2017/01/28
- [Emacs-diffs] scratch/merge-cedet-tests e4db2c3 187/316: Disable auto add, do shared-library-only test, Edward John Steere, 2017/01/28
- [Emacs-diffs] scratch/merge-cedet-tests cd9aeb4 258/316: Move tests in cedet/semantic, Edward John Steere, 2017/01/28
- [Emacs-diffs] scratch/merge-cedet-tests 39f1464 235/316: (cit-srecode-fill-cpp): Fixed misspelling of target name., Edward John Steere, 2017/01/28
- [Emacs-diffs] scratch/merge-cedet-tests aa72e43 200/316: Fix unit testing for several tests and do better error checking., Edward John Steere, 2017/01/28
- [Emacs-diffs] scratch/merge-cedet-tests 658ff90 205/316: (cedet-utest): Add EDE sanity check to the end., Edward John Steere, 2017/01/28