Index: tools/testrunner/local/utils.py |
diff --git a/tools/testrunner/local/utils.py b/tools/testrunner/local/utils.py |
index 961b4924740e9b2f634313230e0bc48b51326d4a..13bd28012e7fb5cb8865d43871c4ed69cefbcf66 100644 |
--- a/tools/testrunner/local/utils.py |
+++ b/tools/testrunner/local/utils.py |
@@ -73,6 +73,8 @@ def GuessOS(): |
return 'solaris' |
elif system == 'NetBSD': |
return 'netbsd' |
+ elif system == 'AIX': |
+ return 'aix' |
else: |
return None |
@@ -99,7 +101,7 @@ def DefaultArch(): |
return 'ia32' |
elif machine == 'amd64': |
return 'ia32' |
- elif id == 'ppc64': |
+ elif machine == 'ppc64': |
return 'ppc' |
else: |
return None |