diff options
author | Benoit Foucher <benoit@zeroc.com> | 2004-03-19 04:01:11 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2004-03-19 04:01:11 +0000 |
commit | 9209658954a06b4e8aa436efbd9a1b1dca67e5e7 (patch) | |
tree | 3a87cda33a278221d9b4a417e7f434229b5d9248 /cpp/allTests.py | |
parent | port to PHP5.0.0RC1 (diff) | |
download | ice-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-x | cpp/allTests.py | 6 |
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: |