$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r58039 - trunk/libs/graph/test
From: jewillco_at_[hidden]
Date: 2009-11-29 16:03:02
Author: jewillco
Date: 2009-11-29 16:03:01 EST (Sun, 29 Nov 2009)
New Revision: 58039
URL: http://svn.boost.org/trac/boost/changeset/58039
Log:
Removed Expat condition since it is no longer required
Text files modified: 
   trunk/libs/graph/test/Jamfile.v2 |    10 +---------                              
   1 files changed, 1 insertions(+), 9 deletions(-)
Modified: trunk/libs/graph/test/Jamfile.v2
==============================================================================
--- trunk/libs/graph/test/Jamfile.v2	(original)
+++ trunk/libs/graph/test/Jamfile.v2	2009-11-29 16:03:01 EST (Sun, 29 Nov 2009)
@@ -9,19 +9,12 @@
 
 import modules ;
 
-local optional_tests ;
-
 path-constant PLANAR_INPUT_FILES : ./planar_input_graphs ;
 
 path-constant CYCLE_RATIO_INPUT_FILE : ./cycle_ratio_s382.90.dot ;
 
 path-constant METIS_INPUT_FILE : ./weighted_graph.gr ;
 
-if [ modules.peek : EXPAT_INCLUDE ] && [ modules.peek : EXPAT_LIBPATH ]
-{
-  optional_tests += [ run graphml_test.cpp ../build//boost_graph : : "graphml_test.xml" ] ;
-}
-
 test-suite graph_test :
     # test_graphs will eventually defined a framework for testing the structure
     # and implementation of graph data structures and adaptors.
@@ -122,8 +115,7 @@
     [ compile grid_graph_cc.cpp ]
     [ run grid_graph_test.cpp ]
     [ run incremental_components_test.cpp ]
-
-    $(optional_tests)
+    [ run graphml_test.cpp ../build//boost_graph : : "graphml_test.xml" ]
     ;
 
 # Run SDB tests only when -sSDB= is set.