summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Witt <witt@acm.org>2007-06-07 18:08:54 +0000
committerThomas Witt <witt@acm.org>2007-06-07 18:08:54 +0000
commit2bafbc0c7aeea40bfecd3337116bae47c1bb3bb2 (patch)
tree4214c2551399d80f08b4b50f1b48c6bbbd76bde1
parent33d7f8f2a16219e863f4e14bf419923c4154e642 (diff)
downloadboost-2bafbc0c7aeea40bfecd3337116bae47c1bb3bb2.tar.gz
Fixes for #583.
[SVN r37929]
m---------libs/python0
-rw-r--r--tools/regression/compiler_status.cpp8
2 files changed, 8 insertions, 0 deletions
diff --git a/libs/python b/libs/python
-Subproject a346c577cfa7ac8d79c8439fdd22fd590501e38
+Subproject a5706ec3b0cefdaf657cea5e23b3141abddeaf9
diff --git a/tools/regression/compiler_status.cpp b/tools/regression/compiler_status.cpp
index 674faca367..464579a2fe 100644
--- a/tools/regression/compiler_status.cpp
+++ b/tools/regression/compiler_status.cpp
@@ -576,6 +576,14 @@ const fs::path find_bin_path(const string& relative)
test_type_base.erase( trailer );
}
}
+ if ( test_type_base.size() > 4 )
+ {
+ const string::size_type trailer = test_type_base.size() - 4;
+ if ( test_type_base.substr( trailer ) == "_pyd" )
+ {
+ test_type_base.erase( trailer );
+ }
+ }
const xml::element & test_type_element( find_element( db, test_type_base ) );
pass = !test_type_element.name.empty()