summaryrefslogtreecommitdiff
path: root/test/import.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2005-08-11 02:16:07 +0000
committerSteven Knight <knight@baldmt.com>2005-08-11 02:16:07 +0000
commit0a34420780fe0f7fb3f7a8d9f13eccb8ac1f2738 (patch)
tree454b681bb493584c369999ce8cf966f7401d1e67 /test/import.py
parente533041b779711bb840eb5b7121bd8f9509830f3 (diff)
downloadscons-0a34420780fe0f7fb3f7a8d9f13eccb8ac1f2738.tar.gz
Win32 portability fixes.
Diffstat (limited to 'test/import.py')
-rw-r--r--test/import.py32
1 files changed, 20 insertions, 12 deletions
diff --git a/test/import.py b/test/import.py
index 9c25adae..0c790ba9 100644
--- a/test/import.py
+++ b/test/import.py
@@ -135,22 +135,30 @@ tools = [
'zip',
]
-intel_warnings = [
- # License warning.
- """
-scons: warning: Intel license dir was not found. Tried using the INTEL_LICENSE_FILE environment variable (), the registry () and the default path (C:\Program Files\Common Files\Intel\Licenses). Using the default path as a last resort.
-File "SConstruct", line 1, in ?
-""",
- # No top dir warning, 32 bit version.
- """
+# Intel no top dir warning, 32 bit version.
+intel_no_top_dir_32_warning = """
scons: warning: Can't find Intel compiler top dir for version='None', abi='ia32'
File "SConstruct", line 1, in ?
-""",
- # No top dir warning, 64 bit version.
- """
+"""
+
+# Intel no top dir warning, 64 bit version.
+intel_no_top_dir_64_warning = """
scons: warning: Can't find Intel compiler top dir for version='None', abi='x86_64'
File "SConstruct", line 1, in ?
-""",
+"""
+
+# Intel no license directory warning
+intel_license_warning = """
+scons: warning: Intel license dir was not found. Tried using the INTEL_LICENSE_FILE environment variable (), the registry () and the default path (C:\Program Files\Common Files\Intel\Licenses). Using the default path as a last resort.
+File "SConstruct", line 1, in ?
+"""
+
+intel_warnings = [
+ intel_license_warning,
+ intel_no_top_dir_32_warning,
+ intel_no_top_dir_32_warning + intel_license_warning,
+ intel_no_top_dir_64_warning,
+ intel_no_top_dir_64_warning + intel_license_warning,
]
moc = test.where_is('moc')