This commit adds a test that builds a mixed language stack, the stack contains frames of Fortran, C, and C++. The test prints the backtrace and explores the stack printing arguments of different types in frames of different languages. The core of the test is repeated with GDB's language set to auto, fortran, c, and c++ in turn to ensure that GDB is happy to print frames and frame arguments when the language is set to a value that doesn't match the frame language. This test currently passes, and there are no known bugs in this area. The aim of this commit is simply to increase test coverage, as I don't believe this functionality is currently tested. gdb/testsuite/ChangeLog: * gdb.fortran/mixed-lang-stack.c: New file. * gdb.fortran/mixed-lang-stack.cpp: New file. * gdb.fortran/mixed-lang-stack.exp: New file. * gdb.fortran/mixed-lang-stack.f90: New file.
38 lines
1.2 KiB
C
38 lines
1.2 KiB
C
/* Copyright 2020 Free Software Foundation, Inc.
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
|
|
|
#include <stdio.h>
|
|
#include <complex.h>
|
|
#include <string.h>
|
|
|
|
struct some_struct
|
|
{
|
|
float a, b;
|
|
};
|
|
|
|
extern void mixed_func_1d_ (int *, float *, double *, complex float *,
|
|
char *, size_t);
|
|
|
|
void
|
|
mixed_func_1c (int a, float b, double c, complex float d, char *f,
|
|
struct some_struct *g)
|
|
{
|
|
printf ("a = %d, b = %f, c = %e, d = (%f + %fi)\n", a, b, c,
|
|
creal(d), cimag(d));
|
|
|
|
char *string = "this is a string from C";
|
|
mixed_func_1d_ (&a, &b, &c, &d, string, strlen (string));
|
|
}
|