1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
#!/usr/bin/env python
# **********************************************************************
#
# Copyright (c) 2003-2007 ZeroC, Inc. All rights reserved.
#
# This copy of Ice is licensed to you under the terms described in the
# ICE_LICENSE file included in this distribution.
#
# **********************************************************************
import os, sys, time, pickle, getopt, re, platform
for toplevel in [".", "..", "../..", "../../..", "../../../.."]:
toplevel = os.path.normpath(toplevel)
if os.path.exists(os.path.join(toplevel, "config", "TestUtil.py")):
break
else:
raise "can't find toplevel directory!"
sys.path.append(os.path.join(toplevel, "config"))
from scripts import *
def usage():
print "usage: " + sys.argv[0] + " [-h|--help] [-n|-hostname HOSTNAME] FILENAME ..."
print ""
print "Print the results stored in the given files."
print ""
print "Command line options:"
print ""
print " -h | --help Print this help message."
print " -n | --hostname Print this help message."
print ""
sys.exit(2)
try:
opts, pargs = getopt.getopt(sys.argv[1:], 'hn:c', ['help', 'hostname=', 'csv', 'csv2']);
except getopt.GetoptError:
usage()
niter = max
printResults = False
hostname = ""
filename = ""
outputFormat = "text"
for o, a in opts:
if o == '-h' or o == "--help":
usage()
elif o == '-n' or o == "--hostname":
hostname = a
(system, name, ver, build, machine, processor) = platform.uname()
if hostname == "":
hostname = name
if hostname.find('.'):
hostname = hostname[0:hostname.find('.')]
filename = ("results.ice." + system + "." + hostname).lower()
inputfile = file(filename)
rawResults = eval(inputfile.read())
inputfile.close()
TestUtil.PrintResults(rawResults, filename, [('Ice', 'TAO'), ('IceE', 'TAO'), ('IceE', 'Ice')])
|