diff options
author | Jose <jose@zeroc.com> | 2015-09-01 18:38:49 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2015-09-01 18:38:49 +0200 |
commit | a0ec3ebc2d7bf24260415939fc625e0e4fc472d2 (patch) | |
tree | 6038f2e83da2a4fd404b1ccce08fc5ed114280ec /scripts/TestUtil.py | |
parent | Additional makecerts.py fix, don't try generating BKS if JKS fails (diff) | |
download | ice-a0ec3ebc2d7bf24260415939fc625e0e4fc472d2.tar.bz2 ice-a0ec3ebc2d7bf24260415939fc625e0e4fc472d2.tar.xz ice-a0ec3ebc2d7bf24260415939fc625e0e4fc472d2.zip |
Fix for IceBox tests with ARM
Diffstat (limited to 'scripts/TestUtil.py')
-rwxr-xr-x | scripts/TestUtil.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/TestUtil.py b/scripts/TestUtil.py index df0ddac6bd9..ace9c8dac2a 100755 --- a/scripts/TestUtil.py +++ b/scripts/TestUtil.py @@ -791,7 +791,7 @@ def getIceBox(): iceBox += "d" iceBox += ".exe" elif isLinux(): - if not x64: + if not x64 and not armv7l: iceBox += "32" if cpp11: iceBox += "++11" |