$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r62474 - trunk/libs/msm/test
From: christophe.j.henry_at_[hidden]
Date: 2010-06-06 05:04:08
Author: chenry
Date: 2010-06-06 05:04:08 EDT (Sun, 06 Jun 2010)
New Revision: 62474
URL: http://svn.boost.org/trac/boost/changeset/62474
Log:
added untested Jamfile
Added:
   trunk/libs/msm/test/Jamfile.v2   (contents, props changed)
Added: trunk/libs/msm/test/Jamfile.v2
==============================================================================
--- (empty file)
+++ trunk/libs/msm/test/Jamfile.v2	2010-06-06 05:04:08 EDT (Sun, 06 Jun 2010)
@@ -0,0 +1,36 @@
+# test/Jamfile.v2 controls building of MSM Library unit tests
+#
+# Copyright (c) 2010 Christophe Henry
+#
+# Use, modification and distribution is subject to the Boost Software License,
+# Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
+# http://www.boost.org/LICENSE_1_0.txt)
+
+import testing ;
+
+project msm
+    :
+    requirements
+        <include>.
+    ;
+
+test-suite msm-unit-tests
+    :
+    [ run Anonymous.cpp ]
+    [ run AnonymousEuml.cpp ]
+    [ run CompositeEuml.cpp ]
+    [ run CompositeMachine.cpp ]
+    [ run Constructor.cpp ]
+    [ run History.cpp ]
+    [ run OrthogonalDeferred.cpp ]
+    [ run OrthogonalDeferred2.cpp ]
+    [ run OrthogonalDeferredEuml.cpp ]
+    [ run SimpleEuml.cpp ]
+    [ run SimpleEuml2.cpp ]
+    [ run SimpleInternal.cpp ]
+    [ run SimpleInternalEuml.cpp ]
+    [ run SimpleInternalFunctors.cpp ]
+    [ run SimpleMachine.cpp ]
+    [ run SimpleWithFunctors.cpp ]
+    ;
+