We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 240f295 commit cfae584Copy full SHA for cfae584
test.py
@@ -80,6 +80,11 @@ def run_searchfs(cmd):
80
lines = run_searchfs("-pse Contents")
81
assert "/Applications/Calendar.app/Contents" not in lines
82
83
+ # Skip /System folder
84
+ lines = run_searchfs("-xse Frameworks")
85
+ assert len(lines) > 10
86
+ assert len([n for n in lines if n.startswith("/System")]) == 0
87
+
88
# All done
89
elapsed = time.time() - start
90
print("Tests completed in %.1f seconds" % (elapsed,))
0 commit comments