summaryrefslogtreecommitdiff
path: root/test cases/fortran/9 cpp
AgeCommit message (Collapse)Author
2022-07-11tests: unskip windows mixing msvc and fortran, for non-gcc fortranEli Schwartz
These checked that e.g. the cpp and fc ids are identical, which isn't strictly what we want. Particularly, msvc doesn't even have a fortran compiler, and what we really care about is whether we mix both gcc and something else.
2021-09-25compilers: Add default search path stdlib_only_link_flagsDylan Baker
This should be done in all cases of language_stdlib_only_link_flags, but I don't have access to all of the compilers to test it. This is required in cases where object files created by gfortran are linked using another compiler with a differen default search path, such as gfortran and clang together.
2021-02-19Fix combining C and Fortran. Closes #8377.Jussi Pakkanen
2019-11-18Use strict function prototypesMichael Hirsch, Ph.D
2019-11-17use '-Werror=unused-parameter' for gcc/clang on project tests and ↵Michael Hirsch, Ph.D
-fimplicit-none on fortran Fortran: check for undeclared variables by forcing implicit none everywhere C/C++: check for unused parameters and return types removed unused variables from test cases ci: do missing return and unused arg check with Github Actions
2019-05-10tests/fortran/9 cpp: It's okay to link ICL and ifortDylan Baker
This test currently assumes that the fortran compiler is gfotran, and if we're not using g++ it skips. This patch changes it to skip if the fotran compiler and the c++ compiler aren't the same family. This still may skip in some cases it shouldn't (clang and gfort probably work fine on windows), but it does enable ifort + ICL. Which is hte point.
2019-01-28Disable mixed (mscv/clang + gnu) Windows Fortran tests. Closes #4829.Jussi Pakkanen
2019-01-27BUGFIX: broken/missing Fortran code/unit testsMichael Hirsch, Ph.D
2018-11-15tests: Fix fortran + cpp test for ifortDylan Baker
To make ifort like rand we need to link with ifport, or we don't get rand.
2018-05-02Can use C++ and FORTRAN in a single target. Closes #2685.Jussi Pakkanen