]> git.eshelyaron.com Git - emacs.git/commitdiff
Disable `ede-project-directories' checking during tests.
authorEric Ludlam <zappo@gnu.org>
Mon, 16 Jan 2012 20:02:12 +0000 (15:02 -0500)
committerEdward John Steere <edward.steere@gmail.com>
Wed, 25 Jan 2017 15:47:55 +0000 (17:47 +0200)
test/manual/cedet/cit-load.el

index a92dcd502d5050d71243863eea7fbd7fb62ab7a8..ea79231214818eee547044b6f4a8cea60f64912b 100644 (file)
@@ -1,6 +1,6 @@
 ;;; cit-load.el --- Configuration when running the integration tests.
 
-;; Copyright (C) 2008, 2009 Eric M. Ludlam
+;; Copyright (C) 2008, 2009, 2012 Eric M. Ludlam
 
 ;; Author: Eric M. Ludlam <eric@siege-engine.com>
 
@@ -30,7 +30,7 @@
 
 (defvar cit-src-dir
   (let ((dir (file-name-directory
-             (or load-file-name (buffer-file-name)))))
+              (or load-file-name (buffer-file-name)))))
     (add-to-list 'load-path dir)
     dir)
   "Src dir to CIT testing suite.")
@@ -47,6 +47,9 @@
 ;; and will be forced to bootstrap a new one.
 (setq srecode-map-save-file nil)
 
+;; Disable asking lots of questions while the tests are running.
+(setq ede-project-directories t)
+
 (require 'cedet-integ-test)
 
 (provide 'cit-load)