2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-17 01:32:12 +00:00

Followup to the last commit: don't import 'exe_suffix'.

[SVN r17506]
This commit is contained in:
Vladimir Prus
2003-02-18 08:57:28 +00:00
parent 0a9e4270b2
commit 0871ce49d2
2 changed files with 4 additions and 4 deletions

View File

@@ -2,7 +2,7 @@
# Test the 'symlink' rule
from BoostBuild import Tester, exe_suffix, List
from BoostBuild import Tester, List
import os
t = Tester()
@@ -25,7 +25,7 @@ int main()
""")
t.run_build_system()
t.expect_addition(List('hello_debug hello_release links/hello_release') * exe_suffix)
t.expect_addition(List('hello_debug hello_release.exe links/hello_release'))
t.cleanup()

View File

@@ -2,7 +2,7 @@
# Test the 'symlink' rule
from BoostBuild import Tester, exe_suffix, List
from BoostBuild import Tester, List
import os
t = Tester()
@@ -25,7 +25,7 @@ int main()
""")
t.run_build_system()
t.expect_addition(List('hello_debug hello_release links/hello_release') * exe_suffix)
t.expect_addition(List('hello_debug hello_release.exe links/hello_release'))
t.cleanup()