Boost logo

Boost-Commit :

From: oryol_at_[hidden]
Date: 2008-08-01 14:07:10


Author: jeremypack
Date: 2008-08-01 14:07:10 EDT (Fri, 01 Aug 2008)
New Revision: 47939
URL: http://svn.boost.org/trac/boost/changeset/47939

Log:
Add executables test.

Added:
   sandbox/libs/extension/test/executables_test.cpp (contents, props changed)

Added: sandbox/libs/extension/test/executables_test.cpp
==============================================================================
--- (empty file)
+++ sandbox/libs/extension/test/executables_test.cpp 2008-08-01 14:07:10 EDT (Fri, 01 Aug 2008)
@@ -0,0 +1,22 @@
+/*
+ * Boost.Extension / executables unit test
+ *
+ * (C) Copyright Jeremy Pack 2008
+ * Distributed under 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)
+ *
+ * See http://www.boost.org/ for latest version.
+ */
+
+#include <cstdlib>
+
+#include <iostream>
+
+#define BOOST_TEST_MAIN
+#define BOOST_TEST_DYN_LINK 1
+#include <boost/test/unit_test.hpp>
+
+BOOST_AUTO_TEST_CASE(multiple_inheritance_example) {
+ BOOST_CHECK_EQUAL(std::system("./MultipleInheritance"), 0);
+}


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk