Changes in / [a4bdbcd:5584342]
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
benchmark/Makefile.am
ra4bdbcd r5584342 146 146 147 147 cleancsv: 148 rm -f compile.csv basic.csv ctxswitch.csv mutex.csv sched uling.csv148 rm -f compile.csv basic.csv ctxswitch.csv mutex.csv schedint.csv 149 149 150 150 jenkins$(EXEEXT): cleancsv … … 157 157 +make mutex.csv 158 158 -+make mutex.diff.csv 159 +make sched uling.csv160 -+make sched uling.diff.csv159 +make schedint.csv 160 -+make schedint.diff.csv 161 161 @DOifskipcompile@ 162 162 cat compile.csv … … 167 167 cat mutex.csv 168 168 -cat mutex.diff.csv 169 cat sched uling.csv170 -cat sched uling.diff.csv169 cat schedint.csv 170 -cat schedint.diff.csv 171 171 172 172 compile.csv: … … 198 198 $(srcdir)/fixcsv.sh $@ 199 199 200 sched uling.csv:200 schedint.csv: 201 201 echo "building $@" 202 202 echo "schedint-1,schedint-2,schedext-1,schedext-2" > $@ … … 490 490 491 491 compile-array$(EXEEXT): 492 $(CFACOMPILE) - fsyntax-only -w $(testdir)/array.cfa492 $(CFACOMPILE) -DNO_COMPILED_PRAGMA -fsyntax-only -w $(testdir)/array.cfa 493 493 494 494 compile-attributes$(EXEEXT): 495 $(CFACOMPILE) - fsyntax-only -w $(testdir)/attributes.cfa495 $(CFACOMPILE) -DNO_COMPILED_PRAGMA -fsyntax-only -w $(testdir)/attributes.cfa 496 496 497 497 compile-empty$(EXEEXT): 498 $(CFACOMPILE) - fsyntax-only -w $(srcdir)/compile/empty.cfa498 $(CFACOMPILE) -DNO_COMPILED_PRAGMA -fsyntax-only -w $(srcdir)/compile/empty.cfa 499 499 500 500 compile-expression$(EXEEXT): 501 $(CFACOMPILE) - fsyntax-only -w $(testdir)/expression.cfa501 $(CFACOMPILE) -DNO_COMPILED_PRAGMA -fsyntax-only -w $(testdir)/expression.cfa 502 502 503 503 compile-io$(EXEEXT): 504 $(CFACOMPILE) - fsyntax-only -w $(testdir)/io1.cfa504 $(CFACOMPILE) -DNO_COMPILED_PRAGMA -fsyntax-only -w $(testdir)/io1.cfa 505 505 506 506 compile-monitor$(EXEEXT): 507 $(CFACOMPILE) - fsyntax-only -w $(testdir)/concurrent/monitor.cfa507 $(CFACOMPILE) -DNO_COMPILED_PRAGMA -fsyntax-only -w $(testdir)/concurrent/monitor.cfa 508 508 509 509 compile-operators$(EXEEXT): 510 $(CFACOMPILE) - fsyntax-only -w $(testdir)/operators.cfa510 $(CFACOMPILE) -DNO_COMPILED_PRAGMA -fsyntax-only -w $(testdir)/operators.cfa 511 511 512 512 compile-thread$(EXEEXT): 513 $(CFACOMPILE) - fsyntax-only -w $(testdir)/concurrent/thread.cfa513 $(CFACOMPILE) -DNO_COMPILED_PRAGMA -fsyntax-only -w $(testdir)/concurrent/thread.cfa 514 514 515 515 compile-typeof$(EXEEXT): 516 $(CFACOMPILE) - fsyntax-only -w $(testdir)/typeof.cfa516 $(CFACOMPILE) -DNO_COMPILED_PRAGMA -fsyntax-only -w $(testdir)/typeof.cfa 517 517 518 518 ## ========================================================================================================= -
tests/array.cfa
ra4bdbcd r5584342 1 // -*- Mode: C -*- 2 // 1 // -*- Mode: C -*- 2 // 3 3 // Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo 4 4 // 5 5 // The contents of this file are covered under the licence agreement in the 6 6 // file "LICENCE" distributed with Cforall. 7 // 7 // 8 8 // array.cfa -- test array declarations 9 // 9 // 10 10 // Author : Peter A. Buhr 11 11 // Created On : Tue Feb 19 21:18:06 2019 … … 13 13 // Last Modified On : Sun Sep 27 09:05:40 2020 14 14 // Update Count : 4 15 // 15 // 16 16 17 17 int a1[0]; … … 50 50 51 51 int main() { 52 #pragma message( "Compiled" ) // force non-empty .expect file 52 #if !defined(NO_COMPILED_PRAGMA) 53 #pragma message( "Compiled" ) // force non-empty .expect file 54 #endif 53 55 } 54 56 -
tests/expression.cfa
ra4bdbcd r5584342 84 84 (S)@{2}`mary; 85 85 86 #pragma message( "Compiled" ) // force non-empty .expect file 86 #if !defined(NO_COMPILED_PRAGMA) 87 #pragma message( "Compiled" ) // force non-empty .expect file 88 #endif 87 89 } // main
Note: See TracChangeset
for help on using the changeset viewer.