diff options
Diffstat (limited to 'buildscripts/cleanbb.py')
| -rw-r--r-- | buildscripts/cleanbb.py | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/buildscripts/cleanbb.py b/buildscripts/cleanbb.py index bfeafd2d8e9..085eee223fb 100644 --- a/buildscripts/cleanbb.py +++ b/buildscripts/cleanbb.py @@ -14,6 +14,16 @@ if os.path.basename(cwd) == 'buildscripts': print( "cwd [" + cwd + "]" ) def shouldKill( c ): + + if "smoke.py" in c: + return False + + if "emr.py" in c: + return False + + if "java" in c: + return False + if c.find( cwd ) >= 0: return True @@ -25,7 +35,10 @@ def shouldKill( c ): def killprocs( signal="" ): killed = 0 - + + if sys.platform == 'win32': + return killed + l = utils.getprocesslist() print( "num procs:" + str( len( l ) ) ) if len(l) == 0: |
