summaryrefslogtreecommitdiffstats
path: root/pactest/util.py
diff options
context:
space:
mode:
authorAaron Griffin <aaron@archlinux.org>2007-03-22 09:30:18 +0100
committerAaron Griffin <aaron@archlinux.org>2007-03-22 09:30:18 +0100
commitbdfe232b8a269e5f63806bbdb7a3d8edf6b2ee7a (patch)
tree93dda4a85cbee0156446de94568f09c3b53a4737 /pactest/util.py
parent118671eff46e42de592a9ac4f6ab5fa32c0f907f (diff)
downloadpacman-bdfe232b8a269e5f63806bbdb7a3d8edf6b2ee7a.tar.gz
pacman-bdfe232b8a269e5f63806bbdb7a3d8edf6b2ee7a.tar.xz
Quick pactest changes:
* Minor change to utils.py(grep) to make it cleaner * Added scriptlet check to verify scriptlet events happen
Diffstat (limited to 'pactest/util.py')
-rwxr-xr-xpactest/util.py14
1 files changed, 5 insertions, 9 deletions
diff --git a/pactest/util.py b/pactest/util.py
index e445605e..574a59be 100755
--- a/pactest/util.py
+++ b/pactest/util.py
@@ -236,16 +236,12 @@ def diffmtime(mt1, mt2):
#
def grep(filename, pattern):
- found = 0
- fd = file(filename, "r")
- while 1 and not found:
- line = fd.readline()
- if not line:
- break
+ lines = file(filename, 'r').readlines()
+ for line in lines:
+ if not line: break
if line.find(pattern) != -1:
- found = 1
- fd.close()
- return found
+ return True
+ return False
def mkdir(dir):
if os.path.isdir(dir):