diff options
author | Zachary Turner <zturner@google.com> | 2015-12-10 18:52:09 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2015-12-10 18:52:09 +0000 |
commit | 923fdbadae3cda40ae3d3e3e977a5bd177866a0f (patch) | |
tree | 8af723e29a3c2d538ea1fdf50ebe5cd920e6ec83 /lldb/packages/Python/lldbsuite/test/benchmarks/expression | |
parent | 70ed57389afc7690751f2fd8ad6c8d0871d5e53b (diff) | |
download | bcm5719-llvm-923fdbadae3cda40ae3d3e3e977a5bd177866a0f.tar.gz bcm5719-llvm-923fdbadae3cda40ae3d3e3e977a5bd177866a0f.zip |
Remove the -y option from dotest.py.
llvm-svn: 255280
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/benchmarks/expression')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/benchmarks/expression/TestExpressionCmd.py | 4 | ||||
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/benchmarks/expression/TestRepeatedExprs.py | 4 |
2 files changed, 2 insertions, 6 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/benchmarks/expression/TestExpressionCmd.py b/lldb/packages/Python/lldbsuite/test/benchmarks/expression/TestExpressionCmd.py index 966b7363c4b..abf45147d63 100644 --- a/lldb/packages/Python/lldbsuite/test/benchmarks/expression/TestExpressionCmd.py +++ b/lldb/packages/Python/lldbsuite/test/benchmarks/expression/TestExpressionCmd.py @@ -17,9 +17,7 @@ class ExpressionEvaluationCase(BenchBase): BenchBase.setUp(self) self.source = 'main.cpp' self.line_to_break = line_number(self.source, '// Set breakpoint here.') - self.count = configuration.bmIterationCount - if self.count <= 0: - self.count = 25 + self.count = 25 @benchmarks_test @expectedFailureWindows("llvm.org/pr22274: need a pexpect replacement for windows") diff --git a/lldb/packages/Python/lldbsuite/test/benchmarks/expression/TestRepeatedExprs.py b/lldb/packages/Python/lldbsuite/test/benchmarks/expression/TestRepeatedExprs.py index 223561eb420..e5cada3563f 100644 --- a/lldb/packages/Python/lldbsuite/test/benchmarks/expression/TestRepeatedExprs.py +++ b/lldb/packages/Python/lldbsuite/test/benchmarks/expression/TestRepeatedExprs.py @@ -19,9 +19,7 @@ class RepeatedExprsCase(BenchBase): self.line_to_break = line_number(self.source, '// Set breakpoint here.') self.lldb_avg = None self.gdb_avg = None - self.count = configuration.bmIterationCount - if self.count <= 0: - self.count = 100 + self.count = 100 @benchmarks_test @expectedFailureWindows("llvm.org/pr22274: need a pexpect replacement for windows") |