From: Eric Ludlam Date: Mon, 16 Jan 2012 20:02:12 +0000 (-0500) Subject: Disable `ede-project-directories' checking during tests. X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1a9f3c4f073bbc694ee7849a2a38e36dc4a235d0;p=emacs.git Disable `ede-project-directories' checking during tests. --- diff --git a/test/manual/cedet/cit-load.el b/test/manual/cedet/cit-load.el index a92dcd502d5..ea792312148 100644 --- a/test/manual/cedet/cit-load.el +++ b/test/manual/cedet/cit-load.el @@ -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 @@ -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)