[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] scratch/merge-cedet-tests 50cce19 183/316: Added lib dir a
From: |
Edward John Steere |
Subject: |
[Emacs-diffs] scratch/merge-cedet-tests 50cce19 183/316: Added lib dir and make-type argument |
Date: |
Fri, 27 Jan 2017 20:03:38 +0000 (UTC) |
branch: scratch/merge-cedet-tests
commit 50cce19599709886484c01adca76e9a705c9e5cb
Author: zappo <address@hidden>
Commit: Edward John Steere <address@hidden>
Added lib dir and make-type argument
* test/manual/cedet/cedet-integ-test.el (cedet-integ-test-proj): Add a
lib dir. Add make-type arg to cit-remove-and-do-shared-lib call.
(cit-compile-and-wait): Accept an optional argument.
---
test/manual/cedet/cedet-integ-test.el | 11 +++++++----
1 file changed, 7 insertions(+), 4 deletions(-)
diff --git a/test/manual/cedet/cedet-integ-test.el
b/test/manual/cedet/cedet-integ-test.el
index 71c07b8..3827948 100644
--- a/test/manual/cedet/cedet-integ-test.el
+++ b/test/manual/cedet/cedet-integ-test.el
@@ -117,6 +117,7 @@ Optional argument MAKE-TYPE is the style of EDE project to
test."
(cit-make-dir cedet-integ-target)
;; 1 c) make src and include directories
(cit-make-dir (cit-file "src"))
+ (cit-make-dir (cit-file "lib"))
(cit-make-dir (cit-file "include"))
(cit-make-dir (cit-file "uml"))
;;
@@ -136,7 +137,7 @@ Optional argument MAKE-TYPE is the style of EDE project to
test."
(cit-remove-add-to-project-cpp)
;; 1 f) remove files from a project
- (cit-remove-and-do-shared-lib)
+ (cit-remove-and-do-shared-lib make-type)
;; 2 e) srecode map manipulation
(cit-srecode-map-test)
@@ -296,13 +297,15 @@ are found, but don't error if they are not their."
(setq actual (cdr actual))
))
-(defun cit-compile-and-wait ()
- "Compile our current project, but wait for it to finish."
+(defun cit-compile-and-wait (&optional ARGS)
+ "Compile our current project, but wait for it to finish.
+Optional ARGS are additional arguments to add to the compile command,
+such as 'clean'."
(let ((bufftokill (find-file (cit-file "Project.ede"))))
;; 1 f) Create a build file.
(ede-proj-regenerate)
;; 1 g) build the sources.
- (compile ede-make-command)
+ (compile (concat ede-make-command (or ARGS "")))
(while compilation-in-progress
(accept-process-output)
- [Emacs-diffs] scratch/merge-cedet-tests ae78cf0 140/316: Tests: Add ERT test for the C Bovinator, (continued)
- [Emacs-diffs] scratch/merge-cedet-tests ae78cf0 140/316: Tests: Add ERT test for the C Bovinator, Edward John Steere, 2017/01/27
- [Emacs-diffs] scratch/merge-cedet-tests 0897a28 127/316: Test file for Project.ede proj., Edward John Steere, 2017/01/27
- [Emacs-diffs] scratch/merge-cedet-tests 3fd7717 192/316: Synchronize cedet/srecode with Emacs., Edward John Steere, 2017/01/27
- [Emacs-diffs] scratch/merge-cedet-tests 558874e 169/316: Update comments, Edward John Steere, 2017/01/27
- [Emacs-diffs] scratch/merge-cedet-tests db5f56b 172/316: (cedet-integ-test): Post a PASSED message., Edward John Steere, 2017/01/27
- [Emacs-diffs] scratch/merge-cedet-tests 40b4bd4 204/316: Adedd `ede-detect-utest', Edward John Steere, 2017/01/27
- [Emacs-diffs] scratch/merge-cedet-tests 24be9ac 184/316: Insert tag's code if it's there, Edward John Steere, 2017/01/27
- [Emacs-diffs] scratch/merge-cedet-tests 6bd181e 224/316: Move tests in cedet/semantic, Edward John Steere, 2017/01/27
- [Emacs-diffs] scratch/merge-cedet-tests df0e0e6 193/316: Synchronize cedet/srecode with Emacs., Edward John Steere, 2017/01/27
- [Emacs-diffs] scratch/merge-cedet-tests 909e1b9 158/316: (ede-detect-utest-init-dirmatch): Force the dirmatch configdatastash to be unbound to force arduino to flush any cached values., Edward John Steere, 2017/01/27
- [Emacs-diffs] scratch/merge-cedet-tests 50cce19 183/316: Added lib dir and make-type argument,
Edward John Steere <=
- [Emacs-diffs] scratch/merge-cedet-tests 82586cd 209/316: eieio: Move to obsolete and use the one that ships with Emacs, Edward John Steere, 2017/01/27
- [Emacs-diffs] scratch/merge-cedet-tests 7eeab10 240/316: (cit-remove-and-do-shared-lib): Enable for use with Make projects too. Create the srcs in a new lib directory., Edward John Steere, 2017/01/27
- [Emacs-diffs] scratch/merge-cedet-tests 27001fd 271/316: Accept the make-tipe argument to control tests, Edward John Steere, 2017/01/27
- [Emacs-diffs] scratch/merge-cedet-tests 9679584 296/316: Remove compatibility function `cedet-called-interactively-p'., Edward John Steere, 2017/01/27
- [Emacs-diffs] scratch/merge-cedet-tests 2316f19 173/316: Add whitespace at the end of a filled buffer, Edward John Steere, 2017/01/27
- [Emacs-diffs] scratch/merge-cedet-tests ef97bdd 203/316: (cedet-utest-batch): Disable saving EDE's cache file., Edward John Steere, 2017/01/27
- [Emacs-diffs] scratch/merge-cedet-tests 764db86 236/316: (cit-remove-add-to-project-cpp): Wait for make to finish., Edward John Steere, 2017/01/27
- [Emacs-diffs] scratch/merge-cedet-tests e492fd9 301/316: (semantic-ia-utest-file-list): Add testunion.cpp., Edward John Steere, 2017/01/27
- [Emacs-diffs] scratch/merge-cedet-tests c561582 298/316: Improve test utilities, Edward John Steere, 2017/01/27
- [Emacs-diffs] scratch/merge-cedet-tests 644d6ca 278/316: Test external database tools., Edward John Steere, 2017/01/27