File tree Expand file tree Collapse file tree 6 files changed +6
-6
lines changed
Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 66# This target runs a list of C benchmarks consecutively.
77
88benchmark-c :
9- $(QUIET ) for file in $( C_BENCHMARKS ) ; do \
9+ $(QUIET ) $( FIND_C_BENCHMARKS_CMD ) | grep ' ^\/ ' | while read -r file ; do \
1010 echo " " ; \
1111 echo " Running benchmark: $$ file" ; \
1212 cd ` dirname $$ file` && \
Original file line number Diff line number Diff line change 66# This target runs a list of C++ benchmarks consecutively.
77
88benchmark-cpp :
9- $(QUIET ) for file in $( CPP_BENCHMARKS ) ; do \
9+ $(QUIET ) $( FIND_CPP_BENCHMARKS_CMD ) | grep ' ^\/ ' | while read -r file ; do \
1010 echo " " ; \
1111 echo " Running benchmark: $$ file" ; \
1212 cd ` dirname $$ file` && \
Original file line number Diff line number Diff line change 66# This target runs a list of JavaScript benchmarks in sequential order. Note that we assume the benchmarks can be run using Node.js.
77
88benchmark-javascript : $(NODE_MODULES )
9- $(QUIET ) for file in $( BENCHMARKS ) ; do \
9+ $(QUIET ) $( FIND_BENCHMARKS_CMD ) | grep ' ^\/ ' | while read -r file ; do \
1010 echo " " ; \
1111 echo " Running benchmark: $$ file" ; \
1212 NODE_ENV=$(NODE_ENV_BENCHMARK ) \
Original file line number Diff line number Diff line change 66# This target runs a list of Julia benchmarks in sequential order. Note that we assume the benchmarks can be run using Julia.
77
88benchmark-julia :
9- $(QUIET ) for file in $( JULIA_BENCHMARKS ) ; do \
9+ $(QUIET ) $( FIND_JULIA_BENCHMARKS_CMD ) | grep ' ^\/ ' | while read -r file ; do \
1010 echo " " ; \
1111 echo " Running benchmark: $$ file" ; \
1212 $(MAKE_EXECUTABLE ) $$ file && $$ file || exit 1; \
Original file line number Diff line number Diff line change 66# This target runs a list of Python benchmarks in sequential order. Note that we assume the benchmarks can be run using Python.
77
88benchmark-python :
9- $(QUIET ) for file in $( PYTHON_BENCHMARKS ) ; do \
9+ $(QUIET ) $( FIND_PYTHON_BENCHMARKS_CMD ) | grep ' ^\/ ' | while read -r file ; do \
1010 echo " " ; \
1111 echo " Running benchmark: $$ file" ; \
1212 $(PYTHON ) $$ file || exit 1; \
Original file line number Diff line number Diff line change 66# This target runs a list of R benchmarks in sequential order. Note that we assume the benchmarks can be run using R.
77
88benchmark-r :
9- $(QUIET ) for file in $( R_BENCHMARKS ) ; do \
9+ $(QUIET ) $( FIND_R_BENCHMARKS_CMD ) | grep ' ^\/ ' | while read -r file ; do \
1010 echo " " ; \
1111 echo " Running benchmark: $$ file" ; \
1212 $(MAKE_EXECUTABLE ) $$ file && $$ file || exit 1; \
You can’t perform that action at this time.
0 commit comments