summaryrefslogtreecommitdiffstats
path: root/runtests.py
diff options
context:
space:
mode:
authorMac Mollison <mollison@cs.unc.edu>2010-02-09 00:26:01 -0500
committerMac Mollison <mollison@cs.unc.edu>2010-02-09 00:41:51 -0500
commit398c0e00341ce6cd747dec36eb63e138c813a12c (patch)
treeb9a4468c6b081bbe2cfe97c51efd79c8984985c8 /runtests.py
parentd260162e66d5f15d6f133bc50c2dd47107e228de (diff)
Minor cleanup; added error printing functionality to stdout_printer.
Diffstat (limited to 'runtests.py')
-rwxr-xr-xruntests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtests.py b/runtests.py
index 06c5caa..f4a9274 100755
--- a/runtests.py
+++ b/runtests.py
@@ -31,7 +31,7 @@ files = [
31 31
32# Does the trace reader sort files by time correctly? 32# Does the trace reader sort files by time correctly?
33def test1(): 33def test1():
34 stream = trace_reader.get_trace_record_stream(files) 34 stream = trace_reader.trace_reader(files)
35 last_time = 0 35 last_time = 0
36 for item in stream: 36 for item in stream:
37 if last_time > item.when: 37 if last_time > item.when: