Changes in benchmark/Makefile.am [6ca0dab:c2bc6d5]
- File:
-
- 1 edited
-
benchmark/Makefile.am (modified) (12 diffs)
Legend:
- Unmodified
- Added
- Removed
-
benchmark/Makefile.am
r6ca0dab rc2bc6d5 113 113 creation_cfa_generator_DURATION = 1000000000 114 114 creation_upp_coroutine_DURATION = ${creation_cfa_coroutine_eager_DURATION} 115 creation_cfa_thread_DURATION = 10000000 116 creation_upp_thread_DURATION = ${creation_cfa_thread_DURATION} 115 117 creation_DURATION = 10000000 116 118 … … 146 148 147 149 cleancsv: 148 rm -f compile.csv basic.csv ctxswitch.csv mutex.csv sched int.csv150 rm -f compile.csv basic.csv ctxswitch.csv mutex.csv scheduling.csv 149 151 150 152 jenkins$(EXEEXT): cleancsv … … 157 159 +make mutex.csv 158 160 -+make mutex.diff.csv 159 +make sched int.csv160 -+make sched int.diff.csv161 +make scheduling.csv 162 -+make scheduling.diff.csv 161 163 @DOifskipcompile@ 162 164 cat compile.csv … … 167 169 cat mutex.csv 168 170 -cat mutex.diff.csv 169 cat sched int.csv170 -cat sched int.diff.csv171 cat scheduling.csv 172 -cat scheduling.diff.csv 171 173 172 174 compile.csv: … … 198 200 $(srcdir)/fixcsv.sh $@ 199 201 200 sched int.csv:202 scheduling.csv: 201 203 echo "building $@" 202 204 echo "schedint-1,schedint-2,schedext-1,schedext-2" > $@ … … 289 291 ctxswitch-python_coroutine$(EXEEXT): 290 292 $(BENCH_V_PY)echo "#!/bin/sh" > a.out 291 echo "python3 $(srcdir)/ctxswitch/python_cor.py \"$$""@\"" >> a.out293 echo "python3.7 $(srcdir)/ctxswitch/python_cor.py" >> a.out 292 294 chmod a+x a.out 293 295 294 296 ctxswitch-nodejs_coroutine$(EXEEXT): 295 297 $(BENCH_V_NODEJS)echo "#!/bin/sh" > a.out 296 echo "nodejs $(srcdir)/ctxswitch/node_cor.js \"$$""@\"" >> a.out298 echo "nodejs $(srcdir)/ctxswitch/node_cor.js" >> a.out 297 299 chmod a+x a.out 298 300 299 301 ctxswitch-nodejs_await$(EXEEXT): 300 302 $(BENCH_V_NODEJS)echo "#!/bin/sh" > a.out 301 echo "nodejs $(srcdir)/ctxswitch/node_await.js \"$$""@\"" >> a.out303 echo "nodejs $(srcdir)/ctxswitch/node_await.js" >> a.out 302 304 chmod a+x a.out 303 305 … … 311 313 $(BENCH_V_JAVAC)javac -d $(builddir) $(srcdir)/ctxswitch/JavaThread.java 312 314 echo "#!/bin/sh" > a.out 313 echo "java JavaThread \"$$""@\"" >> a.out315 echo "java JavaThread" >> a.out 314 316 chmod a+x a.out 315 317 … … 353 355 $(BENCH_V_JAVAC)javac -d $(builddir) $(srcdir)/mutex/JavaThread.java 354 356 echo "#!/bin/sh" > a.out 355 echo "java JavaThread \"$$""@\"" >> a.out357 echo "java JavaThread" >> a.out 356 358 chmod a+x a.out 357 359 … … 385 387 $(BENCH_V_JAVAC)javac -d $(builddir) $(srcdir)/schedint/JavaThread.java 386 388 echo "#!/bin/sh" > a.out 387 echo "java JavaThread \"$$""@\"" >> a.out389 echo "java JavaThread" >> a.out 388 390 chmod a+x a.out 389 391 … … 452 454 creation-python_coroutine$(EXEEXT): 453 455 $(BENCH_V_PY)echo "#!/bin/sh" > a.out 454 echo "python3 $(srcdir)/creation/python_cor.py \"$$""@\"" >> a.out456 echo "python3.7 $(srcdir)/creation/python_cor.py" >> a.out 455 457 chmod a+x a.out 456 458 457 459 creation-nodejs_coroutine$(EXEEXT): 458 460 $(BENCH_V_NODEJS)echo "#!/bin/sh" > a.out 459 echo "nodejs $(srcdir)/creation/node_cor.js \"$$""@\"" >> a.out461 echo "nodejs $(srcdir)/creation/node_cor.js" >> a.out 460 462 chmod a+x a.out 461 463 … … 469 471 $(BENCH_V_JAVAC)javac -d $(builddir) $(srcdir)/creation/JavaThread.java 470 472 echo "#!/bin/sh" > a.out 471 echo "java JavaThread \"$$""@\"" >> a.out473 echo "java JavaThread" >> a.out 472 474 chmod a+x a.out 473 475 … … 490 492 491 493 compile-array$(EXEEXT): 492 $(CFACOMPILE) - DNO_COMPILED_PRAGMA -fsyntax-only -w $(testdir)/array.cfa494 $(CFACOMPILE) -fsyntax-only -w $(testdir)/array.cfa 493 495 494 496 compile-attributes$(EXEEXT): 495 $(CFACOMPILE) - DNO_COMPILED_PRAGMA -fsyntax-only -w $(testdir)/attributes.cfa497 $(CFACOMPILE) -fsyntax-only -w $(testdir)/attributes.cfa 496 498 497 499 compile-empty$(EXEEXT): 498 $(CFACOMPILE) - DNO_COMPILED_PRAGMA -fsyntax-only -w $(srcdir)/compile/empty.cfa500 $(CFACOMPILE) -fsyntax-only -w $(srcdir)/compile/empty.cfa 499 501 500 502 compile-expression$(EXEEXT): 501 $(CFACOMPILE) - DNO_COMPILED_PRAGMA -fsyntax-only -w $(testdir)/expression.cfa503 $(CFACOMPILE) -fsyntax-only -w $(testdir)/expression.cfa 502 504 503 505 compile-io$(EXEEXT): 504 $(CFACOMPILE) - DNO_COMPILED_PRAGMA -fsyntax-only -w $(testdir)/io1.cfa506 $(CFACOMPILE) -fsyntax-only -w $(testdir)/io1.cfa 505 507 506 508 compile-monitor$(EXEEXT): 507 $(CFACOMPILE) - DNO_COMPILED_PRAGMA -fsyntax-only -w $(testdir)/concurrent/monitor.cfa509 $(CFACOMPILE) -fsyntax-only -w $(testdir)/concurrent/monitor.cfa 508 510 509 511 compile-operators$(EXEEXT): 510 $(CFACOMPILE) - DNO_COMPILED_PRAGMA -fsyntax-only -w $(testdir)/operators.cfa512 $(CFACOMPILE) -fsyntax-only -w $(testdir)/operators.cfa 511 513 512 514 compile-thread$(EXEEXT): 513 $(CFACOMPILE) - DNO_COMPILED_PRAGMA -fsyntax-only -w $(testdir)/concurrent/thread.cfa515 $(CFACOMPILE) -fsyntax-only -w $(testdir)/concurrent/thread.cfa 514 516 515 517 compile-typeof$(EXEEXT): 516 $(CFACOMPILE) - DNO_COMPILED_PRAGMA -fsyntax-only -w $(testdir)/typeof.cfa518 $(CFACOMPILE) -fsyntax-only -w $(testdir)/typeof.cfa 517 519 518 520 ## =========================================================================================================
Note:
See TracChangeset
for help on using the changeset viewer.