[lasem] tests: ignore "images" directory in the test suites.



commit 1b5393fd35dd0fe670edf03901028ceb47874f10
Author: Emmanuel Pacaud <emmanuel gnome org>
Date:   Fri Aug 20 21:39:56 2010 +0200

    tests: ignore "images" directory in the test suites.
    
    Both svg 1.1 and svg 1.2 test suites use images directories for
    the embedded ressources.

 src/lasemtest.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)
---
diff --git a/src/lasemtest.c b/src/lasemtest.c
index 88307ff..835f549 100644
--- a/src/lasemtest.c
+++ b/src/lasemtest.c
@@ -262,7 +262,8 @@ lasem_test_process_dir (const char *name)
 	do {
 		entry = g_dir_read_name (directory);
 		if (entry != NULL &&
-		    strstr (entry, "ignore-") != entry)
+		    strstr (entry, "ignore-") != entry &&
+		    strcmp (entry, "images") != 0)
 		{
 			filename = g_build_filename (name, entry, NULL);
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]