summaryrefslogtreecommitdiff
path: root/tools/build/v2/test/testing_primitives.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/build/v2/test/testing_primitives.py')
-rw-r--r--tools/build/v2/test/testing_primitives.py30
1 files changed, 0 insertions, 30 deletions
diff --git a/tools/build/v2/test/testing_primitives.py b/tools/build/v2/test/testing_primitives.py
deleted file mode 100644
index ae62993b32..0000000000
--- a/tools/build/v2/test/testing_primitives.py
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/usr/bin/python
-
-# Copyright 2002 Dave Abrahams
-# Distributed under the Boost Software License, Version 1.0.
-# (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
-
-import BoostBuild
-import re
-
-def match_re(actual, expected):
- return re.match(expected, actual, re.DOTALL) != None
-
-t = BoostBuild.Tester(match=match_re)
-
-t.set_tree('testing-primitives')
-
-# We expect t5 and t7's output to be dumped to stdout.
-t.run_build_system(stdout=r'''.*failing t5.*failing t7''')
-
-t.expect_addition('t2.txt')
-t.expect_addition('t3.txt')
-t.expect_addition('t5.out')
-t.expect_addition('t6.out')
-t.expect_addition('t6.txt')
-t.expect_addition('t7.out')
-t.expect_addition('t7.txt')
-t.expect_addition('t8.out')
-t.expect_nothing_more()
-
-t.cleanup()