From 8caa111ec27dc21973b764d9892e7100f4bd2628 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 13 Oct 2016 15:50:16 +0200 Subject: Add testscript runner interface and implementation stub --- build2/test/script/runner.cxx | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 build2/test/script/runner.cxx (limited to 'build2/test/script/runner.cxx') diff --git a/build2/test/script/runner.cxx b/build2/test/script/runner.cxx new file mode 100644 index 0000000..3789281 --- /dev/null +++ b/build2/test/script/runner.cxx @@ -0,0 +1,22 @@ +// file : build2/test/script/runner.cxx -*- C++ -*- +// copyright : Copyright (c) 2014-2016 Code Synthesis Ltd +// license : MIT; see accompanying LICENSE file + +#include + +using namespace std; + +namespace build2 +{ + namespace test + { + namespace script + { + void concurrent_runner:: + run (const test&) + { + assert (false); // @@ TODO + } + } + } +} -- cgit v1.1