* enable screen logging
This commit is contained in:
parent
cc7155f33b
commit
1e2ab7dc66
10
Makefile
10
Makefile
|
@ -1,6 +1,11 @@
|
||||||
DATESTAMP := $(shell date -u +%Y.%m%d.%H%M)
|
DATESTAMP := $(shell date -u +%Y.%m%d.%H%M)
|
||||||
|
|
||||||
all:
|
all:
|
||||||
|
@echo try:
|
||||||
|
@echo make prep
|
||||||
|
@echo make screen
|
||||||
|
|
||||||
|
local:
|
||||||
mkdir $(DATESTAMP)
|
mkdir $(DATESTAMP)
|
||||||
inventory/inventory.sh $(DATESTAMP)
|
inventory/inventory.sh $(DATESTAMP)
|
||||||
cd cpu; make
|
cd cpu; make
|
||||||
|
@ -11,4 +16,7 @@ prep:
|
||||||
cat loadbot/testservers |xargs -n 1 --replace=BLAH ssh BLAH ./prep.pl
|
cat loadbot/testservers |xargs -n 1 --replace=BLAH ssh BLAH ./prep.pl
|
||||||
|
|
||||||
screen:
|
screen:
|
||||||
cat loadbot/testservers |xargs -n 1 --replace=BLAH ssh BLAH "screen -d -m -S loadbot /root/benchmarks/doit.sh"
|
cat loadbot/testservers |xargs --verbose -n 1 --replace=BLAH ssh BLAH "screen -d -m -S loadbot -c /root/benchmarks/screenrc"
|
||||||
|
|
||||||
|
killall:
|
||||||
|
cat loadbot/testservers |xargs --verbose -n 1 --replace=BLAH ssh BLAH "killall screen"
|
||||||
|
|
1
doit.sh
1
doit.sh
|
@ -7,4 +7,3 @@ time ./bc_sin.sh 1000
|
||||||
time ./bc_sin.sh 2000
|
time ./bc_sin.sh 2000
|
||||||
time ./bc_sin.sh 4000
|
time ./bc_sin.sh 4000
|
||||||
time ./bc_sin.sh 8000
|
time ./bc_sin.sh 8000
|
||||||
bash
|
|
||||||
|
|
Loading…
Reference in New Issue