From mboxrd@z Thu Jan 1 00:00:00 1970 From: Litvinov Sergey Subject: [PATCH] testing/ort-test.el, regexp to find files Date: Wed, 03 Aug 2011 21:20:40 +0200 Message-ID: <871ux2l2t3.fsf@gmail.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([140.186.70.92]:37999) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qoh00-0002aL-35 for emacs-orgmode@gnu.org; Wed, 03 Aug 2011 15:21:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Qogzz-0002oZ-39 for emacs-orgmode@gnu.org; Wed, 03 Aug 2011 15:21:00 -0400 Received: from lo.gmane.org ([80.91.229.12]:50389) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qogzy-0002oU-UK for emacs-orgmode@gnu.org; Wed, 03 Aug 2011 15:20:59 -0400 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1Qogzx-0007yj-1Y for emacs-orgmode@gnu.org; Wed, 03 Aug 2011 21:20:57 +0200 Received: from e181033005.adsl.alicedsl.de ([85.181.33.5]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 03 Aug 2011 21:20:56 +0200 Received: from slitvinov by e181033005.adsl.alicedsl.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 03 Aug 2011 21:20:56 +0200 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org --=-=-= Content-Type: text/plain org-test picks up temporary and backup files. Please consider a patch the attachments to get rid of them. --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0001-Get-rid-of-tmp-and-backup-file-in-test-load.patch Content-Description: patch >From 9b616baf0f3df63ea13ffde37c9c5aff903fac4e Mon Sep 17 00:00:00 2001 From: Sergey Litvinov Date: Mon, 1 Aug 2011 00:47:32 +0200 Subject: [PATCH] Get rid of tmp and backup file in test load --- testing/org-test.el | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/testing/org-test.el b/testing/org-test.el index 96e693f..4e2f8e6 100644 --- a/testing/org-test.el +++ b/testing/org-test.el @@ -204,7 +204,7 @@ files." (lambda (path) (if (file-directory-p path) (rload path) (load-file path))) (directory-files base 'full - "^\\([^.]\\|\\.\\([^.]\\|\\..\\)\\).*\\.el")))) + "^\\([^.]\\|\\.\\([^.]\\|\\..\\)\\).*\\.el$")))) (rload (expand-file-name "lisp" org-test-dir)) (rload (expand-file-name "lisp" (expand-file-name "contrib" org-test-dir))))) -- 1.7.1 --=-=-=--