Skip to content

Commit a5bf053

Browse files
committed
Move benchmark.config to config
1 parent e67f106 commit a5bf053

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

base/hello_world.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
cd `dirname $0`
44
. ./_functions.sh
5-
. ../benchmark.config
5+
. ../config
66

77
bn_name=`basename $0 .sh`
88

base/show_fw_array.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
cd `dirname $0`
44
cd ..
55

6-
. ../benchmark.config
6+
. ../config
77

88
# include framework list
99
targets="$frameworks_list"

benchmark.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ if [ ! `which curl` ]; then
1515
exit 1;
1616
fi
1717

18-
. ./benchmark.config
18+
. ./config
1919

2020
function showHelp()
2121
{

check.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22

3-
. ./benchmark.config
3+
. ./config
44
. ./base/option_target.sh
55

66
# Colors

clean.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22

3-
. ./benchmark.config
3+
. ./config
44
. ./base/option_target.sh
55

66
shopt -s extglob

clear-cache.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ if [ ! `which composer` ]; then
66
fi
77

88

9-
. ./benchmark.config
9+
. ./config
1010
. ./base/option_target.sh
1111

1212
shopt -s extglob

setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ if [ ! `which curl` ]; then
2121
fi
2222

2323

24-
. ./benchmark.config
24+
. ./config
2525
. ./base/option_target.sh
2626

2727
for fw in $param_targets

update.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ if [ ! `which composer` ]; then
44
exit 1;
55
fi
66

7-
. ./benchmark.config
7+
. ./config
88
. ./base/option_target.sh
99

1010
for fw in $param_targets

0 commit comments

Comments
 (0)