diff options
author | Jose <jose@zeroc.com> | 2014-11-21 22:00:05 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2014-11-21 22:00:05 +0100 |
commit | 96afaddc2c40940cfdc7caeee4fe5b444a04b058 (patch) | |
tree | 18146cf46bce221d5094f67d5396454e1bc34459 /scripts/TestUtil.py | |
parent | Set default ARCH for test to x64 in x86_64 machines (diff) | |
download | ice-96afaddc2c40940cfdc7caeee4fe5b444a04b058.tar.bz2 ice-96afaddc2c40940cfdc7caeee4fe5b444a04b058.tar.xz ice-96afaddc2c40940cfdc7caeee4fe5b444a04b058.zip |
Fix TestUtil.py warning
Diffstat (limited to 'scripts/TestUtil.py')
-rwxr-xr-x | scripts/TestUtil.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/TestUtil.py b/scripts/TestUtil.py index 0da0381e882..6ed6e6adbcd 100755 --- a/scripts/TestUtil.py +++ b/scripts/TestUtil.py @@ -20,7 +20,9 @@ keepGoing = False # Set to True to have the tests continue on fail ipv6 = False # Default to use IPv4 only socksProxy = False # Use SOCKS proxy running on localhost iceHome = None # Binary distribution to use (None to use binaries from source distribution) +global x64 x64 = False # Binary distribution is 64-bit +global x86 x86 = False # Binary distribution is 32-bit cpp11 = False # Binary distribution is c++11 extraArgs = [] |