summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEd Maste <emaste@freebsd.org>2013-07-09 00:24:52 +0000
committerEd Maste <emaste@freebsd.org>2013-07-09 00:24:52 +0000
commita7f13f05109a5f610c4541763ab93b797ef49d72 (patch)
tree82ccf8400cdc5e6e91d4205e4dd0cf25c469c085
parent215a77585d9d873115adc50ba025507f5f9b921a (diff)
downloadbcm5719-llvm-a7f13f05109a5f610c4541763ab93b797ef49d72.tar.gz
bcm5719-llvm-a7f13f05109a5f610c4541763ab93b797ef49d72.zip
Update exception to match decorator name
llvm-svn: 185891
-rw-r--r--lldb/test/lldbtest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/lldbtest.py b/lldb/test/lldbtest.py
index 679eafed33e..f321c5b52f5 100644
--- a/lldb/test/lldbtest.py
+++ b/lldb/test/lldbtest.py
@@ -621,7 +621,7 @@ def skipIfLinux(func):
def skipIfDarwin(func):
"""Decorate the item to skip tests that should be skipped on Darwin."""
if isinstance(func, type) and issubclass(func, unittest2.TestCase):
- raise Exception("@skipIfLinux can only be used to decorate a test method")
+ raise Exception("@skipIfDarwin can only be used to decorate a test method")
@wraps(func)
def wrapper(*args, **kwargs):
from unittest2 import case
OpenPOWER on IntegriCloud