mirror of
https://github.com/boostorg/build.git
synced 2026-02-01 20:32:17 +00:00
48 lines
818 B
Python
48 lines
818 B
Python
#!/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()
|