summaryrefslogtreecommitdiff
path: root/cpp/allTests.py
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2004-03-19 04:01:11 +0000
committerBenoit Foucher <benoit@zeroc.com>2004-03-19 04:01:11 +0000
commit9209658954a06b4e8aa436efbd9a1b1dca67e5e7 (patch)
tree3a87cda33a278221d9b4a417e7f434229b5d9248 /cpp/allTests.py
parentport to PHP5.0.0RC1 (diff)
downloadice-9209658954a06b4e8aa436efbd9a1b1dca67e5e7.tar.bz2
ice-9209658954a06b4e8aa436efbd9a1b1dca67e5e7.tar.xz
ice-9209658954a06b4e8aa436efbd9a1b1dca67e5e7.zip
Replaced True|False with 1|0 to allow the script to work with python 2.2
Diffstat (limited to 'cpp/allTests.py')
-rwxr-xr-xcpp/allTests.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/allTests.py b/cpp/allTests.py
index f230f206c4d..08b48b82386 100755
--- a/cpp/allTests.py
+++ b/cpp/allTests.py
@@ -110,14 +110,14 @@ except getopt.GetoptError:
if(args):
usage()
-loop = False
+loop = 0
for o, a in opts:
if o == "-l":
- loop = True
+ loop = 1
if loop:
num = 1
- while True:
+ while 1:
runTests(tests, num)
num += 1
else: