-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
eda7acf
commit e39a786
Showing
11 changed files
with
142 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/usr/bin/bash | ||
|
||
bash rr-bench-htmltest.sh >& ~/tmp/output-htmltest | ||
bash rr-bench-make.sh >& ~/tmp/output-make | ||
bash rr-bench-cp.sh >& ~/tmp/output-cp | ||
bash rr-bench-octane.sh >& ~/tmp/output-octane | ||
bash rr-bench-sambatest.sh >& ~/tmp/output-sambatest | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/usr/bin/bash | ||
|
||
cd $HOME/mozilla-central | ||
export MOZCONFIG=$HOME/.mozconfig-ff-opt | ||
|
||
CLEANUP="" | ||
CMD="./mach mochitest -f plain dom/html/test/forms" | ||
CMD_SINGLE=$CMD | ||
RR_NO_SYSCALLBUF_CMD="./mach mochitest -f plain --debugger $HOME/rr-paper/rr-no-syscallbuf.sh dom/html/test/forms" | ||
RR_NO_CLONING_CMD="./mach mochitest -f plain --debugger $HOME/rr-paper/rr-no-clone.sh dom/html/test/forms" | ||
RR_CMD="./mach mochitest -f plain --debugger rr dom/html/test/forms" | ||
DR_CMD="./mach mochitest -f plain --debugger $HOME/dynamorio/obj/bin64/drrun dom/html/test/forms" | ||
|
||
source $HOME/rr-paper/rr-bench.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/usr/bin/bash | ||
|
||
export CCACHE_DISABLE=1 | ||
|
||
CLEANUP="make -C $HOME/dynamorio2/obj clean" | ||
CMD="make -C $HOME/dynamorio2/obj -j8" | ||
CMD_SINGLE="make -C $HOME/dynamorio2/obj -j1" | ||
RR_NO_SYSCALLBUF_CMD="rr record -F -n $CMD_SINGLE" | ||
RR_NO_CLONING_CMD="rr record -F --no-read-cloning $CMD_SINGLE" | ||
RR_CMD="rr -F record $CMD_SINGLE" | ||
DR_CMD="$HOME/dynamorio/obj/bin64/drrun $CMD" | ||
|
||
source $HOME/rr-paper/rr-bench.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/usr/bin/bash | ||
|
||
cd $HOME/mozilla-central/js/src/octane | ||
|
||
CLEANUP="" | ||
CMD="$HOME/mozilla-central/obj-ff-opt/js/src/js run.js" | ||
CMD_SINGLE="$HOME/mozilla-central/obj-ff-opt/js/src/js --thread-count=0 run.js" | ||
RR_NO_SYSCALLBUF_CMD="rr record -F -n $CMD_SINGLE" | ||
RR_NO_CLONING_CMD="rr record -F --no-read-cloning $CMD_SINGLE" | ||
RR_CMD="rr -F record $CMD_SINGLE" | ||
DR_CMD="$HOME/dynamorio/obj/bin64/drrun $CMD" | ||
|
||
source $HOME/rr-paper/rr-bench.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/usr/bin/bash | ||
|
||
cd $HOME/samba | ||
|
||
CLEANUP="" | ||
CMD="make test TESTS=samba4.echo.udp" | ||
CMD_SINGLE=$CMD | ||
RR_NO_SYSCALLBUF_CMD="rr record -F -n $CMD_SINGLE" | ||
RR_NO_CLONING_CMD="rr record -F --no-read-cloning $CMD_SINGLE" | ||
RR_CMD="rr -F record $CMD_SINGLE" | ||
DR_CMD="$HOME/dynamorio/obj/bin64/drrun $CMD" | ||
|
||
source $HOME/rr-paper/rr-bench.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/sh | ||
|
||
rr record -F --no-read-cloning $* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/sh | ||
|
||
rr record -F -n $* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters