⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cvexpr.exp

📁 这个是LINUX下的GDB调度工具的源码
💻 EXP
📖 第 1 页 / 共 2 页
字号:
#   Copyright (C) 2001 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, write to the Free Software# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  # Please email any bugs, comments, and/or additions to this file to:# bug-gdb@prep.ai.mit.edu# Written by Michael Snyder, Red Hat, Inc., 9/20/2001# This file is part of the gdb testsuite# Tests for type expressions using const and volatile keywords.if $tracelevel then {        strace $tracelevel        }## test running programs#set prms_id 0set bug_id 0set testfile "cvexpr"set srcfile ${testfile}.cset binfile ${objdir}/${subdir}/${testfile}if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {     gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."}gdb_exitgdb_startgdb_reinitialize_dir $srcdir/$subdirgdb_load ${binfile}if [target_info exists gdb_stub] {    gdb_step_for_stub;}gdb_test "set print sevenbit-strings" "" ""gdb_test "set print address off" "" ""gdb_test "set width 0" "" ""set ws  "\[ \t\]*"## Test casting a scalar to const#gdb_test "whatis (const char) v_char" \	"type = const char" \	"(const char)"gdb_test "whatis (const signed char) v_signed_char" \	"type = const signed char" \	"(const signed char)"gdb_test "whatis (const unsigned char) v_unsigned_char" \	"type = const (unsigned char|char)" \	"(const unsigned char)"gdb_test "whatis (const short) v_short" \	"type = const (short|short int)" \	"(const short)"gdb_test "whatis (const signed short) v_signed_short" \	"type = const (short|short int|signed short|signed short int)" \	"(const signed short)"gdb_test "whatis (const unsigned short) v_unsigned_short" \	"type = const (unsigned short|short unsigned int)" \	"(const unsigned short)"gdb_test "whatis (const int) v_int" \	"type = const int" \	"(const int)"gdb_test "whatis (const signed int) v_signed_int" \	"type = const (signed int|int)" \	"(const signed int)"gdb_test "whatis (const unsigned int) v_unsigned_int" \	"type = const unsigned int" \	"(const unsigned int)"gdb_test "whatis (const long) v_long" \	"type = const (long|long int)" \	"(const long)"gdb_test "whatis (const signed long) v_signed_long" \	"type = const (signed |)long( int|)" \	"(const signed long)"gdb_test "whatis (const unsigned long) v_unsigned_long" \	"type = const (unsigned long|long unsigned int)" \	"(const unsigned long)"gdb_test "whatis (const long long) v_long_long" \	"type = const long long( int|)" \	"(const long long)"gdb_test "whatis (const signed long long) v_signed_long_long" \	"type = const (signed |)long long( int|)" \	"(const signed long long)"gdb_test "whatis (const unsigned long long) v_unsigned_long_long" \	"type = const (unsigned long long|long long unsigned int)" \	"(const unsigned long long)"gdb_test "whatis (const float) v_float" \	"type = const float" \	"(const float)"gdb_test "whatis (const double) v_double" \	"type = const double" \	"(const double)"## Test casting a scalar to volatile#gdb_test "whatis (volatile char) v_char" \	"type = volatile char" \	"(volatile char)"gdb_test "whatis (volatile signed char) v_signed_char" \	"type = volatile signed char" \	"(volatile signed char)"gdb_test "whatis (volatile unsigned char) v_unsigned_char" \	"type = volatile (unsigned char|char)" \	"(volatile unsigned char)"gdb_test "whatis (volatile short) v_short" \	"type = volatile (short|short int)" \	"(volatile short)"gdb_test "whatis (volatile signed short) v_signed_short" \	"type = volatile (short|short int|signed short|signed short int)" \	"(volatile signed short)"gdb_test "whatis (volatile unsigned short) v_unsigned_short" \	"type = volatile (unsigned short|short unsigned int)" \	"(volatile unsigned short)"gdb_test "whatis (volatile int) v_int" \	"type = volatile int" \	"(volatile int)"gdb_test "whatis (volatile signed int) v_signed_int" \	"type = volatile (signed int|int)" \	"(volatile signed int)"gdb_test "whatis (volatile unsigned int) v_unsigned_int" \	"type = volatile unsigned int" \	"(volatile unsigned int)"gdb_test "whatis (volatile long) v_long" \	"type = volatile (long|long int)" \	"(volatile long)"gdb_test "whatis (volatile signed long) v_signed_long" \	"type = volatile (signed |)long( int|)" \	"(volatile signed long)"gdb_test "whatis (volatile unsigned long) v_unsigned_long" \	"type = volatile (unsigned long|long unsigned int)" \	"(volatile unsigned long)"gdb_test "whatis (volatile long long) v_long_long" \	"type = volatile long long( int|)" \	"(volatile long long)"gdb_test "whatis (volatile signed long long) v_signed_long_long" \	"type = volatile (signed |)long long( int|)" \	"(volatile signed long long)"gdb_test "whatis (volatile unsigned long long) v_unsigned_long_long" \	"type = volatile (unsigned long long|long long unsigned int)" \	"(volatile unsigned long long)"gdb_test "whatis (volatile float) v_float" \	"type = volatile float" \	"(volatile float)"gdb_test "whatis (volatile double) v_double" \	"type = volatile double" \	"(volatile double)"## Combine const and volatile#gdb_test "whatis (const volatile int) v_int" \	"type = const volatile int" \	"(const volatile int)"gdb_test "whatis (volatile const int) v_int" \	"type = const volatile int" \	"(volatile const int)"gdb_test "whatis (const int volatile) v_int" \	"type = const volatile int" \	"(const int volatile)"gdb_test "whatis (volatile int const) v_int" \	"type = const volatile int" \	"(volatile int const)"gdb_test "whatis (int const volatile) v_int" \	"type = const volatile int" \	"(int const volatile)"gdb_test "whatis (int volatile const) v_int" \	"type = const volatile int" \	"(int volatile const)"gdb_test "whatis (const volatile int *) v_int_pointer" \	"type = const volatile int${ws}\\*" \	"(const volatile int *)"gdb_test "whatis (volatile const int *) v_int_pointer" \	"type = const volatile int${ws}\\*" \	"(volatile const int *)"gdb_test "whatis (const int volatile *) v_int_pointer" \	"type = const volatile int${ws}\\*" \	"(const int volatile)"gdb_test "whatis (volatile int const *) v_int_pointer" \	"type = const volatile int${ws}\\*" \	"(volatile int const *)"gdb_test "whatis (int const volatile *) v_int_pointer" \	"type = const volatile int${ws}\\*" \	"(int const volatile *)"gdb_test "whatis (int volatile const *) v_int_pointer" \	"type = const volatile int${ws}\\*" \	"(int volatile const *)"gdb_test "whatis (int * const volatile) v_int_pointer" \	"type = int${ws}\\*${ws}const volatile" \	"(int * const volatile)"gdb_test "whatis (int * volatile const) v_int_pointer" \	"type = int${ws}\\*${ws}const volatile" \	"(int * volatile const)"## Put 'signed' and 'unsigned' before const/volatile (FIXME)##gdb_test "whatis (signed const char) v_signed_char" \#	"type = const char" \#	"(signed const char)"#gdb_test "whatis (unsigned const char) v_unsigned_char" \#	"type = const (unsigned char|char)" \#	"(unsigned const char)"#gdb_test "whatis (signed const short) v_signed_short" \#	"type = const (short|short int|signed short|signed short int)" \#	"(signed const short)"#gdb_test "whatis (unsigned const short) v_unsigned_short" \#	"type = const (unsigned short|short unsigned int)" \#	"(unsigned const short)"#gdb_test "whatis (signed const int) v_signed_int" \#	"type = const (signed int|int)" \#	"(signed const int)"#gdb_test "whatis (unsigned const int) v_unsigned_int" \#	"type = const unsigned int" \#	"(unsigned const int)"#gdb_test "whatis (signed const long) v_signed_long" \#	"type = const (signed |)long( int|)" \#	"(signed const long)"#gdb_test "whatis (unsigned const long) v_unsigned_long" \#	"type = const (unsigned long|long unsigned int)" \#	"(unsigned const long)"#gdb_test "whatis (signed const long long) v_signed_long_long" \#	"type = const (signed |)long long( int|)" \#	"(signed const long long)"#gdb_test "whatis (unsigned const long long) v_unsigned_long_long" \#	"type = const (unsigned long long|long long unsigned int)" \#	"(const unsigned long long)"#gdb_test "whatis (signed volatile char) v_signed_char" \#	"type = volatile char" \#	"(signed volatile char)"

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -