Changeset f15fe0a for benchmark/Makefile.am
- Timestamp:
- Apr 18, 2019, 11:52:27 AM (6 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, cleanup-dtors, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- d4510ea
- Parents:
- b0ccd1c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
benchmark/Makefile.am
rb0ccd1c rf15fe0a 67 67 68 68 .NOTPARALLEL: 69 .PHONY: compile.csv ctxswitch.csv mutex.csv signal.csv 69 70 70 71 ## ========================================================================================================= … … 94 95 ## ========================================================================================================= 95 96 97 FIX_NEW_LINES = cat $@ | tr "\n" "\t" | sed -r 's/\t,/,/' | tr "\t" "\n" > $@ 98 96 99 jenkins$(EXEEXT): 97 @echo "{"98 @echo -e '\t"githash": "'${githash}'",'99 @echo -e '\t"arch": "' ${arch} '",'100 100 @DOifskipcompile@ 101 @echo -e '\t"compile": {' 102 @+make compile TIME_FORMAT='%e,' PRINT_FORMAT='\t\t\"%s\" :' 103 @echo -e '\t\t"dummy" : {}' 104 @echo -e '\t},' 101 @+make compile.csv 105 102 @DOendif@ 106 @echo -e '\t"ctxswitch": {' 107 @echo -en '\t\t"coroutine":' 108 @+make ctxswitch-cfa_coroutine.runquiet 109 @echo -en '\t\t,"thread":' 110 @+make ctxswitch-cfa_thread.runquiet 111 @echo -e '\t},' 112 @echo -e '\t"mutex": [' 113 @echo -en '\t\t' 114 @+make mutex-cfa1.runquiet 115 @echo -en '\t\t,' 116 @+make mutex-cfa2.runquiet 117 @echo -e '\t],' 118 @echo -e '\t"scheduling": [' 119 @echo -en '\t\t' 120 @+make signal-cfa1.runquiet 121 @echo -en '\t\t,' 122 @+make signal-cfa2.runquiet 123 @echo -en '\t\t,' 124 @+make waitfor-cfa1.runquiet 125 @echo -en '\t\t,' 126 @+make waitfor-cfa2.runquiet 127 @echo -e '\n\t],' 128 @echo -e '\t"epoch": ' $(shell date +%s) 129 @echo "}" 103 @+make ctxswitch.csv 104 @+make mutex.csv 105 @+make signal.csv 106 107 compile.csv: 108 @echo "array,attributes,empty,expression,io,monitor,operators,typeof" > $@ 109 @+make TIME_FORMAT='%e,' PRINT_FORMAT='' compile-array.make >> $@ 110 @+make TIME_FORMAT='%e,' PRINT_FORMAT='' compile-attributes.make >> $@ 111 @+make TIME_FORMAT='%e,' PRINT_FORMAT='' compile-empty.make >> $@ 112 @+make TIME_FORMAT='%e,' PRINT_FORMAT='' compile-expression.make >> $@ 113 @+make TIME_FORMAT='%e,' PRINT_FORMAT='' compile-io.make >> $@ 114 @+make TIME_FORMAT='%e,' PRINT_FORMAT='' compile-monitor.make >> $@ 115 @+make TIME_FORMAT='%e,' PRINT_FORMAT='' compile-operators.make >> $@ 116 @+make TIME_FORMAT='%e' PRINT_FORMAT='' compile-typeof.make >> $@ 117 @$(srcdir)/fixcsv.sh $@ 118 119 ctxswitch.csv: 120 @echo "coroutine,thread" > $@ 121 @+make ctxswitch-cfa_coroutine.runquiet >> $@ && echo -n ',' >> $@ 122 @+make ctxswitch-cfa_thread.runquiet >> $@ 123 @$(srcdir)/fixcsv.sh $@ 124 125 mutex.csv: 126 @echo "1-monitor,2-monitor" > $@ 127 @+make mutex-cfa1.runquiet >> $@ && echo -n ',' >> $@ 128 @+make mutex-cfa2.runquiet >> $@ 129 @$(srcdir)/fixcsv.sh $@ 130 131 signal.csv: 132 @echo "signal-1,signal-2,waitfor-1,waitfor-2" > $@ 133 @+make signal-cfa1.runquiet >> $@ && echo -n ',' >> $@ 134 @+make signal-cfa2.runquiet >> $@ && echo -n ',' >> $@ 135 @+make waitfor-cfa1.runquiet >> $@ && echo -n ',' >> $@ 136 @+make waitfor-cfa2.runquiet >> $@ 137 @$(srcdir)/fixcsv.sh $@ 130 138 131 139 ## =========================================================================================================
Note: See TracChangeset
for help on using the changeset viewer.