summaryrefslogtreecommitdiffstats
path: root/test/packaging
diff options
context:
space:
mode:
authordirkbaechle <devnull@localhost>2012-09-04 23:23:13 (GMT)
committerdirkbaechle <devnull@localhost>2012-09-04 23:23:13 (GMT)
commit1c8744b6d4ec8812746415d1aae4f13e634809ca (patch)
tree5d422a83251e4afe9a3941b3bb97a79fdb38765f /test/packaging
parenta54670d821ac18abc3880ef9ca03c2f84edd5ae6 (diff)
downloadSCons-1c8744b6d4ec8812746415d1aae4f13e634809ca.zip
SCons-1c8744b6d4ec8812746415d1aae4f13e634809ca.tar.gz
SCons-1c8744b6d4ec8812746415d1aae4f13e634809ca.tar.bz2
- first swoop of changes for getting all Buildbot slaves to run successfully again
Diffstat (limited to 'test/packaging')
-rw-r--r--test/packaging/option--package-type.py8
-rw-r--r--test/packaging/rpm/cleanup.py7
-rw-r--r--test/packaging/rpm/internationalization.py7
-rw-r--r--test/packaging/rpm/multipackage.py7
-rw-r--r--test/packaging/rpm/package.py7
-rw-r--r--test/packaging/rpm/tagging.py7
6 files changed, 43 insertions, 0 deletions
diff --git a/test/packaging/option--package-type.py b/test/packaging/option--package-type.py
index c1d6720..9bfa565 100644
--- a/test/packaging/option--package-type.py
+++ b/test/packaging/option--package-type.py
@@ -31,6 +31,14 @@ Test the --package-type option.
import TestSCons
machine = TestSCons.machine
+try:
+ # Try to get the actual machine type (like i586), since
+ # TestSCons maps all ix86 types to a i386 machine internally.
+ import os
+ machine = os.uname()[4]
+except AttributeError:
+ pass
+
_python_ = TestSCons._python_
test = TestSCons.TestSCons()
diff --git a/test/packaging/rpm/cleanup.py b/test/packaging/rpm/cleanup.py
index 7ae5473..9d79219 100644
--- a/test/packaging/rpm/cleanup.py
+++ b/test/packaging/rpm/cleanup.py
@@ -31,6 +31,13 @@ Assert that files created by the RPM packager will be removed by 'scons -c'.
import TestSCons
machine = TestSCons.machine
+try:
+ # Try to get the actual machine type (like i586), since
+ # TestSCons maps all ix86 types to a i386 machine internally.
+ import os
+ machine = os.uname()[4]
+except AttributeError:
+ pass
_python_ = TestSCons._python_
test = TestSCons.TestSCons()
diff --git a/test/packaging/rpm/internationalization.py b/test/packaging/rpm/internationalization.py
index e9fcc12..a9bd926 100644
--- a/test/packaging/rpm/internationalization.py
+++ b/test/packaging/rpm/internationalization.py
@@ -36,6 +36,13 @@ import os
import TestSCons
machine = TestSCons.machine
+try:
+ # Try to get the actual machine type (like i586), since
+ # TestSCons maps all ix86 types to a i386 machine internally.
+ import os
+ machine = os.uname()[4]
+except AttributeError:
+ pass
_python_ = TestSCons._python_
test = TestSCons.TestSCons()
diff --git a/test/packaging/rpm/multipackage.py b/test/packaging/rpm/multipackage.py
index c3f1f4e..4f10a8a 100644
--- a/test/packaging/rpm/multipackage.py
+++ b/test/packaging/rpm/multipackage.py
@@ -33,6 +33,13 @@ import os
import TestSCons
machine = TestSCons.machine
+try:
+ # Try to get the actual machine type (like i586), since
+ # TestSCons maps all ix86 types to a i386 machine internally.
+ import os
+ machine = os.uname()[4]
+except AttributeError:
+ pass
_python_ = TestSCons._python_
test = TestSCons.TestSCons()
diff --git a/test/packaging/rpm/package.py b/test/packaging/rpm/package.py
index 14da4bb..3a55e33 100644
--- a/test/packaging/rpm/package.py
+++ b/test/packaging/rpm/package.py
@@ -32,6 +32,13 @@ import os
import TestSCons
machine = TestSCons.machine
+try:
+ # Try to get the actual machine type (like i586), since
+ # TestSCons maps all ix86 types to a i386 machine internally.
+ import os
+ machine = os.uname()[4]
+except AttributeError:
+ pass
_python_ = TestSCons._python_
test = TestSCons.TestSCons()
diff --git a/test/packaging/rpm/tagging.py b/test/packaging/rpm/tagging.py
index 6a242c6..4e43d93 100644
--- a/test/packaging/rpm/tagging.py
+++ b/test/packaging/rpm/tagging.py
@@ -33,6 +33,13 @@ import os
import TestSCons
machine = TestSCons.machine
+try:
+ # Try to get the actual machine type (like i586), since
+ # TestSCons maps all ix86 types to a i386 machine internally.
+ import os
+ machine = os.uname()[4]
+except AttributeError:
+ pass
_python_ = TestSCons._python_
test = TestSCons.TestSCons()