]> git.eshelyaron.com Git - emacs.git/commitdiff
Added new subdir and ensure that the base dir
authorzappo <zappo@users.sourceforge.net>
Thu, 12 Mar 2009 02:26:52 +0000 (02:26 +0000)
committerEdward John Steere <edward.steere@gmail.com>
Wed, 25 Jan 2017 16:38:43 +0000 (18:38 +0200)
is made first

* test/manual/cedet/cedet-integ-test.el (cedet-integ-base): New, using
 old target value.  (cedet-integ-target): Subdir under base
 (cedet-integ-test): Make the base dir first.
 (cit-srecode-verify-tags): Fix paren typos on error condition.

test/manual/cedet/cedet-integ-test.el

index ec74c45e93b35dede35d91b425e4874706be947d..9316b1a381339f55cfcc518eab57e39ca9cf5e8d 100644 (file)
 (require 'ede)
 (require 'data-debug)
 (require 'ede-make)
+
+(eval-and-compile
+  (defvar cedet-integ-base "/tmp/CEDET_INTEG"
+    "Root of multiple project integration tests.")
+  )
+
 (require 'cit-cpp)
 (require 'cit-srec)
 (require 'cit-el)
 (require 'cit-texi)
 (require 'cit-gnustep)
 
-(defvar cedet-integ-target "/tmp/CEDET_INTEG"
-  "Root of the integration tests.")
+(defvar cedet-integ-target (expand-file-name "edeproj" cedet-integ-base)
+  "Root of the EDE project integration tests.")
 
 ;;; Code:
 (defun cedet-integ-test ()
@@ -82,6 +88,7 @@
   (interactive)
   ;; 1 a) build directories
   ;;
+  (cit-make-dir cedet-integ-base)
   (cit-make-dir cedet-integ-target)
   ;; 1 c) make src and include directories
   (cit-make-dir (cit-file "src"))
@@ -229,7 +236,6 @@ are found, but don't error if they are not their."
        (data-debug-insert-thing
         (cit-tag-verify-error-debug "Dbg" :actual T1 :expected T2)
         ">" "")
-        )
 
        (error "Tag %s does not match %s"
               (semantic-format-tag-name T1)
@@ -238,7 +244,7 @@ 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."