From 0871ce49d261390735d4e28edb274ede0ad4c2a3 Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Tue, 18 Feb 2003 08:57:28 +0000 Subject: [PATCH] Followup to the last commit: don't import 'exe_suffix'. [SVN r17506] --- test/symlink.py | 4 ++-- v2/test/symlink.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/test/symlink.py b/test/symlink.py index 1efbde583..69bdc3262 100644 --- a/test/symlink.py +++ b/test/symlink.py @@ -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() diff --git a/v2/test/symlink.py b/v2/test/symlink.py index 1efbde583..69bdc3262 100644 --- a/v2/test/symlink.py +++ b/v2/test/symlink.py @@ -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()