summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohnny Chen <johnny.chen@apple.com>2011-04-26 23:10:51 +0000
committerJohnny Chen <johnny.chen@apple.com>2011-04-26 23:10:51 +0000
commit0a8a54c117c67fa9be748eab64a8bf4a68399b1c (patch)
treec8a04e3b2534b7f4bfb05679de266bfd9f49107a
parent35ec67464fc8e3d8dca782df0729075134cabbaa (diff)
downloadbcm5719-llvm-0a8a54c117c67fa9be748eab64a8bf4a68399b1c.tar.gz
bcm5719-llvm-0a8a54c117c67fa9be748eab64a8bf4a68399b1c.zip
Docstring.
llvm-svn: 130254
-rwxr-xr-xlldb/test/dotest.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/test/dotest.py b/lldb/test/dotest.py
index 9c10a8067a1..53001543360 100755
--- a/lldb/test/dotest.py
+++ b/lldb/test/dotest.py
@@ -24,11 +24,11 @@ import os, signal, sys, time
import unittest2
def is_exe(fpath):
- """Return true if fpath is an executable."""
+ """Returns true if fpath is an executable."""
return os.path.isfile(fpath) and os.access(fpath, os.X_OK)
def which(program):
- """Find the full path to a program; return None otherwise."""
+ """Returns the full path to a program; None otherwise."""
fpath, fname = os.path.split(program)
if fpath:
if is_exe(program):
OpenPOWER on IntegriCloud