File: core_watch

package info (click to toggle)
iceweasel 2.0.0.19-0etch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 298,784 kB
  • ctags: 317,912
  • sloc: cpp: 1,796,902; ansic: 987,677; xml: 109,036; makefile: 47,777; asm: 35,201; perl: 26,983; sh: 20,879; cs: 6,232; java: 5,513; python: 3,249; pascal: 459; lex: 306; php: 244; csh: 132; objc: 97; yacc: 79; ada: 49; awk: 14; sql: 4; sed: 4
file content (45 lines) | stat: -rwxr-xr-x 1,673 bytes parent folder | download | duplicates (74)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#############################################################
# script to watch for cores during QA runs, so they won't overwrite one
# another
# Not activated for efficiency reasons, and problems on MKS, us
# only when needed and remember to remove afterwards
#############################################################

#############################################################
# to activate put the following into all.sh (after the HOSTDIR 
# has been exported
#############################################################
# sh `dirname $0`/core_watch $HOSTDIR ${HOSTDIR} &    
# CORE_WATCH_PID=$!
# if [ -n "${KILLPIDS}" ]
# then
#     echo $CORE_WATCH_PID >>"${KILLPIDS}"            
# fi
#############################################################

#############################################################
# or put the following into nssqa to watch the whole RESULTDIR
# start it shortly before run_all
#
# NOTE: the more efficient way is above, this is potentially going
# thru 1000ds of files every 30 seconds
#############################################################
# sh `dirname $0`/core_watch $RESULTDIR &    
# echo $! >>"${KILLPIDS}"        #so Exit() can hopefully kill the core_watch
#############################################################

# in both cases remember to kill the process when done, since 
# the PIDs that end up in ${KILLPIDS} might not work for all OS
# something like "kill_by_name core_watch

echo $$ >>"${KILLPIDS}"     #so Exit() can hopefully kill this shell
while [ 1 ]
do
    for w in `find $1 -name "core" -print`
    do
        echo "Found core $w"
        mv $w $w.`date +%H%M%S`
    done
    sleep 30
done