added .old(...)

This commit is contained in:
Lorenzo Caminiti
2015-10-23 15:46:47 -07:00
parent 7e52eb0a96
commit c594323bef
53 changed files with 1004 additions and 580 deletions

View File

@@ -27,6 +27,11 @@ int main() {
<< "c::f::pre" << std::endl
<< "a::f::pre" << std::endl
<< "d::f::old" << std::endl
<< "e::f::old" << std::endl
<< "c::f::old" << std::endl
<< "a::f::old" << std::endl
<< "a::f::body" << std::endl
<< "d::static_inv" << std::endl
@@ -38,9 +43,13 @@ int main() {
<< "a::static_inv" << std::endl
<< "a::inv" << std::endl
<< "d::f::old" << std::endl
<< "d::f::post" << std::endl
<< "e::f::old" << std::endl
<< "e::f::post" << std::endl
<< "c::f::old" << std::endl
<< "c::f::post" << std::endl
// No old call here because not a base object.
<< "a::f::post" << std::endl
;
BOOST_TEST(out.eq(ok.str()));