diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2014-10-08 10:53:46 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2014-10-08 10:53:46 -0230 |
commit | 079235c9cbf25e283aecb5b9d70694885d507d91 (patch) | |
tree | a8f5f305dd1fc793642c98db79e059ee7f737701 /scripts/TestUtil.py | |
parent | Fixed ACM bug where the activity wasn't always updated after parsing or sendi... (diff) | |
download | ice-079235c9cbf25e283aecb5b9d70694885d507d91.tar.bz2 ice-079235c9cbf25e283aecb5b9d70694885d507d91.tar.xz ice-079235c9cbf25e283aecb5b9d70694885d507d91.zip |
Fixed a couple of errors in demo/test scripts
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 1554196f904..043245cbc47 100755 --- a/scripts/TestUtil.py +++ b/scripts/TestUtil.py @@ -689,7 +689,7 @@ def getGlacier2Router(): return getIceExe("glacier2router") def getIceExe(name): - if isVC90() or isMINGW(): + if isMINGW(): return os.path.join(getServiceDir(), name) else: return os.path.join(getCppBinDir(), name) |