Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of boost. Click here for the latest Boost documentation.

tools/build/v2/test/core_delete_module.py

#!/usr/bin/python

# This tests the facilities for deleting modules.

import BoostBuild

t = BoostBuild.Tester(pass_toolset=0)

t.write("file.jam", """
module foo
{
    rule bar { }
    var = x y ;
}
DELETE_MODULE foo ;
if [ RULENAMES foo ]
{
     EXIT DELETE_MODULE failed to kill foo's rules: [ RULENAMES foo ] ;
}

module foo
{
     if $(var)
     {
         EXIT DELETE_MODULE failed to kill foo's variables ;
     }
     
     rule bar { }
     var = x y ;
     
     DELETE_MODULE foo ;
     
     if $(var)
     {
         EXIT internal DELETE_MODULE failed to kill foo's variables ;
     }
     if [ RULENAMES foo ]
     {
         EXIT internal DELETE_MODULE failed to kill foo's rules: [ RULENAMES foo ] ;
     }
}
DEPENDS all : xx ;
NOTFILE xx ;
""")

t.run_build_system("-ffile.jam", status=0)
t.cleanup()