Skip to content
This repository was archived by the owner on Nov 21, 2018. It is now read-only.

Commit 7b61612

Browse files
committed
Add -Zorbit collection
1 parent 42b3ef9 commit 7b61612

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

process.sh

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ for dir in *; do
99
if [[ -d $dir ]]; then
1010
echo "Processing $dir"
1111
cd $dir
12+
1213
for i in 0 1 2 3 4 5
1314
do
1415
rustc --version >$TIMES_DIR/raw/$dir--$DATE--$i.log
@@ -18,13 +19,26 @@ for dir in *; do
1819

1920
make touch >/dev/null
2021
done
22+
23+
export RUSTFLAGS='-Zorbit'
24+
for i in 0 1 2 3 4 5
25+
do
26+
rustc --version >$TIMES_DIR/raw/orbit-$dir--$DATE--$i.log
27+
echo "rustc: ./$dir" >>$TIMES_DIR/raw/orbit-$dir--$DATE--$i.log
28+
make >>$TIMES_DIR/raw/orbit-$dir--$DATE--$i.log
29+
echo "done" >>$TIMES_DIR/raw/orbit-$dir--$DATE--$i.log
30+
31+
make touch >/dev/null
32+
done
33+
2134
make clean >/dev/null
2235

2336
cd $TIMES_DIR
2437
python $SCRIPTS_DIR/process.py $dir $DATE 6
2538
for i in 0 1 2 3 4 5
2639
do
2740
git add raw/$dir--$DATE--$i.log
41+
git add raw/orbit-$dir--$DATE--$i.log
2842
git add processed/$dir--$DATE--$i.json
2943
done
3044

0 commit comments

Comments
 (0)