OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [gdb-7.2/] [gdb-7.2-or32-1.0rc1/] [gdb/] [testsuite/] [gdb.python/] [py-value.exp] - Blame information for rev 416

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 330 jeremybenn
# Copyright (C) 2008, 2009, 2010 Free Software Foundation, Inc.
2
 
3
# This program is free software; you can redistribute it and/or modify
4
# it under the terms of the GNU General Public License as published by
5
# the Free Software Foundation; either version 3 of the License, or
6
# (at your option) any later version.
7
#
8
# This program is distributed in the hope that it will be useful,
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
# GNU General Public License for more details.
12
#
13
# You should have received a copy of the GNU General Public License
14
# along with this program.  If not, see .
15
 
16
# This file is part of the GDB testsuite.  It tests the mechanism
17
# exposing values to Python.
18
 
19
if $tracelevel then {
20
    strace $tracelevel
21
}
22
 
23
set testfile "py-value"
24
set srcfile ${testfile}.c
25
set binfile ${objdir}/${subdir}/${testfile}
26
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
27
    untested "Couldn't compile ${srcfile}"
28
    return -1
29
}
30
 
31
# Usage: gdb_py_test_multiple NAME INPUT RESULT {INPUT RESULT}...
32
# Run a test named NAME, consisting of multiple lines of input.
33
# After each input line INPUT, search for result line RESULT.
34
# Succeed if all results are seen; fail otherwise.
35
proc gdb_py_test_multiple {name args} {
36
    global gdb_prompt
37
    foreach {input result} $args {
38
        if {[gdb_test_multiple $input "$name - $input" {
39
            -re "\[\r\n\]*($result)\[\r\n\]+($gdb_prompt | *>)$" {
40
                pass "$name - $input"
41
            }
42
        }]} {
43
            return 1
44
        }
45
    }
46
    return 0
47
}
48
 
49
# Run a command in GDB, and report a failure if a Python exception is thrown.
50
# If report_pass is true, report a pass if no exception is thrown.
51
proc gdb_py_test_silent_cmd {cmd name report_pass} {
52
  global gdb_prompt
53
 
54
  gdb_test_multiple $cmd $name {
55
      -re "Traceback.*$gdb_prompt $"  { fail $name }
56
      -re "$gdb_prompt $"             { if $report_pass { pass $name } }
57
  }
58
}
59
 
60
proc test_value_creation {} {
61
  global gdb_prompt
62
 
63
  gdb_py_test_silent_cmd "python i = gdb.Value (True)" "create boolean value" 1
64
  gdb_py_test_silent_cmd "python i = gdb.Value (5)" "create integer value" 1
65
  gdb_py_test_silent_cmd "python i = gdb.Value (5L)" "create long value" 1
66
  gdb_py_test_silent_cmd "python f = gdb.Value (1.25)" "create double value" 1
67
  gdb_py_test_silent_cmd "python a = gdb.Value ('string test')" "create 8-bit string value" 1
68
  gdb_test "python print a" "\"string test\"" "print 8-bit string"
69
  gdb_test "python print a.__class__" "" "verify type of 8-bit string"
70
  gdb_py_test_silent_cmd "python a = gdb.Value (u'unicode test')" "create unicode value" 1
71
  gdb_test "python print a" "\"unicode test\"" "print Unicode string"
72
  gdb_test "python print a.__class__" "" "verify type of unicode string"
73
 
74
  # Test address attribute is None in a non-addressable value
75
  gdb_test "python print 'result =', i.address" "= None" "Test address attribute in non-addressable value"
76
}
77
 
78
proc test_value_numeric_ops {} {
79
  global gdb_prompt
80
 
81
  gdb_py_test_silent_cmd "python i = gdb.Value (5)" "create first integer value" 0
82
  gdb_py_test_silent_cmd "python j = gdb.Value (2)" "create second integer value" 0
83
  gdb_py_test_silent_cmd "python f = gdb.Value (1.25)" "create first double value" 0
84
  gdb_py_test_silent_cmd "python g = gdb.Value (2.5)" "create second double value" 0
85
  gdb_test "python print 'result = ' + str(i+j)" " = 7" "add two integer values"
86
  gdb_test "python print (i+j).__class__" "" "verify type of integer add result"
87
 
88
  gdb_test "python print 'result = ' + str(f+g)" " = 3.75" "add two double values"
89
  gdb_test "python print 'result = ' + str(i-j)" " = 3" "subtract two integer values"
90
  gdb_test "python print 'result = ' + str(f-g)" " = -1.25" "subtract two double values"
91
  gdb_test "python print 'result = ' + str(i*j)" " = 10" "multiply two integer values"
92
  gdb_test "python print 'result = ' + str(f*g)" " = 3.125" "multiply two double values"
93
  gdb_test "python print 'result = ' + str(i/j)" " = 2" "divide two integer values"
94
  gdb_test "python print 'result = ' + str(f/g)" " = 0.5" "divide two double values"
95
  gdb_test "python print 'result = ' + str(i%j)" " = 1" "take remainder of two integer values"
96
  # Remainder of float is implemented in Python but not in GDB's value system.
97
 
98
  gdb_test "python print 'result = ' + str(i**j)" " = 25" "integer value raised to the power of another integer value"
99
  gdb_test "python print 'result = ' + str(g**j)" " = 6.25" "double value raised to the power of integer value"
100
 
101
  gdb_test "python print 'result = ' + str(-i)" " = -5" "negated integer value"
102
  gdb_test "python print 'result = ' + str(+i)" " = 5" "positive integer value"
103
  gdb_test "python print 'result = ' + str(-f)" " = -1.25" "negated double value"
104
  gdb_test "python print 'result = ' + str(+f)" " = 1.25" "positive double value"
105
  gdb_test "python print 'result = ' + str(abs(j-i))" " = 3" "absolute of integer value"
106
  gdb_test "python print 'result = ' + str(abs(f-g))" " = 1.25" "absolute of double value"
107
 
108
  # Test gdb.Value mixed with Python types.
109
 
110
  gdb_test "python print 'result = ' + str(i-1)" " = 4" "subtract integer value from python integer"
111
  gdb_test "python print (i-1).__class__" "" "verify type of mixed integer subtraction result"
112
  gdb_test "python print 'result = ' + str(f+1.5)" " = 2.75" "add double value with python float"
113
 
114
  gdb_test "python print 'result = ' + str(1-i)" " = -4" "subtract python integer from integer value"
115
  gdb_test "python print 'result = ' + str(1.5+f)" " = 2.75" "add python float with double value"
116
 
117
  # Conversion test.
118
  gdb_test "print evalue" " = TWO"
119
  gdb_test_no_output "python evalue = gdb.history (0)"
120
  gdb_test "python print int (evalue)" "2"
121
 
122
  # Test pointer arithmethic
123
 
124
  # First, obtain the pointers
125
  gdb_test "print (void *) 2" ".*" ""
126
  gdb_test_no_output "python a = gdb.history (0)" ""
127
  gdb_test "print (void *) 5" ".*" ""
128
  gdb_test_no_output "python b = gdb.history (0)" ""
129
 
130
  gdb_test "python print 'result = ' + str(a+5)" " = 0x7" "add pointer value with python integer"
131
  gdb_test "python print 'result = ' + str(b-2)" " = 0x3" "subtract python integer from pointer value"
132
  gdb_test "python print 'result = ' + str(b-a)" " = 3" "subtract two pointer values"
133
 
134
  # Test some invalid operations.
135
 
136
  gdb_test_multiple "python print 'result = ' + str(i+'foo')" "catch error in python type conversion" {
137
      -re "Argument to arithmetic operation not a number or boolean.*$gdb_prompt $"   {pass "catch error in python type conversion"}
138
      -re "result = .*$gdb_prompt $"                  {fail "catch error in python type conversion"}
139
      -re "$gdb_prompt $"                             {fail "catch error in python type conversion"}
140
  }
141
 
142
  gdb_test_multiple "python print 'result = ' + str(i+gdb.Value('foo'))" "catch throw of GDB error" {
143
      -re "Traceback.*$gdb_prompt $"  {pass "catch throw of GDB error"}
144
      -re "result = .*$gdb_prompt $"  {fail "catch throw of GDB error"}
145
      -re "$gdb_prompt $"             {fail "catch throw of GDB error"}
146
  }
147
}
148
 
149
proc test_value_boolean {} {
150
  # First, define a useful function to test booleans.
151
  gdb_py_test_multiple "define function to test booleans" \
152
    "python" "" \
153
    "def test_bool (val):" "" \
154
    "  if val:" "" \
155
    "    print 'yay'" "" \
156
    "  else:" "" \
157
    "    print 'nay'" "" \
158
    "end" ""
159
 
160
  gdb_test "py test_bool (gdb.Value (True))" "yay" "check evaluation of true boolean value in expression"
161
 
162
  gdb_test "py test_bool (gdb.Value (False))" "nay" "check evaluation of false boolean value in expression"
163
 
164
  gdb_test "py test_bool (gdb.Value (5))" "yay" "check evaluation of true integer value in expression"
165
 
166
  gdb_test "py test_bool (gdb.Value (0))" "nay" "check evaluation of false integer value in expression"
167
 
168
  gdb_test "py test_bool (gdb.Value (5.2))" "yay" "check evaluation of true integer value in expression"
169
 
170
  gdb_test "py test_bool (gdb.Value (0.0))" "nay" "check evaluation of false integer value in expression"
171
}
172
 
173
proc test_value_compare {} {
174
  gdb_test "py print gdb.Value (1) < gdb.Value (1)" "False" "less than, equal"
175
  gdb_test "py print gdb.Value (1) < gdb.Value (2)" "True" "less than, less"
176
  gdb_test "py print gdb.Value (2) < gdb.Value (1)" "False" "less than, greater"
177
  gdb_test "py print gdb.Value (2) < None" "False" "less than, None"
178
 
179
  gdb_test "py print gdb.Value (1) <= gdb.Value (1)" "True" "less or equal, equal"
180
  gdb_test "py print gdb.Value (1) <= gdb.Value (2)" "True" "less or equal, less"
181
  gdb_test "py print gdb.Value (2) <= gdb.Value (1)" "False" "less or equal, greater"
182
  gdb_test "py print gdb.Value (2) <= None" "False" "less or equal, None"
183
 
184
  gdb_test "py print gdb.Value (1) == gdb.Value (1)" "True" "equality of gdb.Values"
185
  gdb_test "py print gdb.Value (1) == gdb.Value (2)" "False" "inequality of gdb.Values"
186
  gdb_test "py print gdb.Value (1) == 1.0" "True" "equality of gdb.Value with Python value"
187
  gdb_test "py print gdb.Value (1) == 2" "False" "inequality of gdb.Value with Python value"
188
  gdb_test "py print gdb.Value (1) == None" "False" "inequality of gdb.Value with None"
189
 
190
  gdb_test "py print gdb.Value (1) != gdb.Value (1)" "False" "inequality, false"
191
  gdb_test "py print gdb.Value (1) != gdb.Value (2)" "True" "inequality, true"
192
  gdb_test "py print gdb.Value (1) != None" "True" "inequality, None"
193
 
194
  gdb_test "py print gdb.Value (1) > gdb.Value (1)" "False" "greater than, equal"
195
  gdb_test "py print gdb.Value (1) > gdb.Value (2)" "False" "greater than, less"
196
  gdb_test "py print gdb.Value (2) > gdb.Value (1)" "True" "greater than, greater"
197
  gdb_test "py print gdb.Value (2) > None" "True" "greater than, None"
198
 
199
  gdb_test "py print gdb.Value (1) >= gdb.Value (1)" "True" "greater or equal, equal"
200
  gdb_test "py print gdb.Value (1) >= gdb.Value (2)" "False" "greater or equal, less"
201
  gdb_test "py print gdb.Value (2) >= gdb.Value (1)" "True" "greater or equal, greater"
202
  gdb_test "py print gdb.Value (2) >= None" "True" "greater or equal, None"
203
}
204
 
205
proc test_value_in_inferior {} {
206
  global gdb_prompt
207
  global testfile
208
 
209
  gdb_breakpoint [gdb_get_line_number "break to inspect struct and union"]
210
 
211
  gdb_continue_to_breakpoint "break to inspect struct and union"
212
 
213
  # Just get inferior variable s in the value history, available to python.
214
  gdb_test "print s" " = {a = 3, b = 5}" ""
215
 
216
  gdb_py_test_silent_cmd "python s = gdb.history (0)" "get value from history" 1
217
 
218
  gdb_test "python print 'result = ' + str(s\['a'\])" " = 3" "access element inside struct using 8-bit string name"
219
  gdb_test "python print 'result = ' + str(s\[u'a'\])" " = 3" "access element inside struct using unicode name"
220
 
221
  # Test dereferencing the argv pointer
222
 
223
  # Just get inferior variable argv the value history, available to python.
224
  gdb_test "print argv" " = \\(char \\*\\*\\) 0x.*" ""
225
 
226
  gdb_py_test_silent_cmd "python argv = gdb.history (0)" "" 0
227
  gdb_py_test_silent_cmd "python arg0 = argv.dereference ()" "dereference value" 1
228
 
229
  # Check that the dereferenced value is sane
230
  if { ! [target_info exists noargs] } {
231
    gdb_test "python print arg0" "0x.*$testfile\"" "verify dereferenced value"
232
  }
233
 
234
  # Smoke-test is_optimized_out attribute
235
  gdb_test "python print 'result =', arg0.is_optimized_out" "= False" "Test is_optimized_out attribute"
236
 
237
  # Test address attribute
238
  gdb_test "python print 'result =', arg0.address" "= 0x\[\[:xdigit:\]\]+" "Test address attribute"
239
 
240
  # Test string fetches,  both partial and whole.
241
  gdb_test "print st" "\"divide et impera\""
242
  gdb_py_test_silent_cmd "python st = gdb.history (0)" "get value from history" 1
243
  gdb_test "python print st.string ()"  "divide et impera"  "Test string with no length"
244
  gdb_test "python print st.string (length = -1)" "divide et impera" "Test string (length = -1) is all of the string"
245
  gdb_test "python print st.string (length = 6)" "divide"
246
  gdb_test "python print \"---\"+st.string (length = 0)+\"---\"" "------" "Test string (length = 0) is empty"
247
  gdb_test "python print len(st.string (length = 0))" "0" "Test length is 0"
248
 
249
 
250
  # Fetch a string that has embedded nulls.
251
  gdb_test "print nullst" "\"divide\\\\000et\\\\000impera\".*"
252
  gdb_py_test_silent_cmd "python nullst = gdb.history (0)" "get value from history" 1
253
  gdb_test "python print nullst.string ()" "divide" "Test string to first null"
254
  # Python cannot print strings that contain the null (\0) character.
255
  # For the purposes of this test, use repr()
256
  gdb_py_test_silent_cmd "python nullst = nullst.string (length = 9)" "get string beyond null" 1
257
  gdb_test "python print repr(nullst)" "u'divide\\\\x00et'"
258
}
259
 
260
proc test_lazy_strings {} {
261
 
262
  global hex
263
 
264
  gdb_test "print sptr" "\"pointer\""
265
  gdb_py_test_silent_cmd "python sptr = gdb.history (0)" "Get value from history" 1
266
 
267
  gdb_py_test_silent_cmd "python lstr = sptr.lazy_string()" "Aquire lazy string" 1
268
  gdb_test "python print lstr.type" "const char \*." "Test type name equality"
269
  gdb_test "python print sptr.type" "const char \*." "Test type name equality"
270
  gdb_test "print sn" "0x0"
271
  gdb_py_test_silent_cmd "python snptr = gdb.history (0)" "Get value from history" 1
272
  gdb_test "python snstr = snptr.lazy_string(length=5)" ".*Cannot create a lazy string with address.*" "Test lazy string"
273
  gdb_py_test_silent_cmd "python snstr = snptr.lazy_string(length=0)" "Succesfully create a lazy string" 1
274
  gdb_test "python print snstr.length" "0" "Test lazy string length"
275
  gdb_test "python print snstr.address" "0" "Test lazy string address"
276
}
277
 
278
 
279
# A few objfile tests.
280
proc test_objfiles {} {
281
    gdb_test "python\nok=False\nfor file in gdb.objfiles():\n  if 'py-value' in file.filename:\n    ok=True\nprint ok\nend" "True"
282
 
283
    gdb_test "python print gdb.objfiles()\[0\].pretty_printers" "\\\[\\\]"
284
 
285
    gdb_test "python gdb.objfiles()\[0\].pretty_printers = 0" \
286
      "pretty_printers attribute must be a list.*Error while executing Python code."
287
}
288
 
289
proc test_value_after_death {} {
290
  # Construct a type while the inferior is still running.
291
  gdb_py_test_silent_cmd "python ptrtype = gdb.lookup_type('PTR')" \
292
    "create PTR type" 1
293
 
294
  # Kill the inferior and remove the symbols.
295
  gdb_test "kill" "" "kill the inferior" \
296
    "Kill the program being debugged. .y or n. $" \
297
    "y"
298
  gdb_test "file" "" "Discard the symbols" \
299
    "Discard symbol table from.*y or n. $" \
300
    "y"
301
 
302
  # Now create a value using that type.  Relies on arg0, created by
303
  # test_value_in_inferior.
304
  gdb_py_test_silent_cmd "python castval = arg0.cast(ptrtype.pointer())" \
305
    "cast arg0 to PTR" 1
306
 
307
  # Make sure the type is deleted.
308
  gdb_py_test_silent_cmd "python ptrtype = None" \
309
    "delete PTR type" 1
310
 
311
  # Now see if the value's type is still valid.
312
  gdb_test "python print castval.type" "PTR ." \
313
    "print value's type"
314
}
315
 
316
# Regression test for invalid subscript operations.  The bug was that
317
# the type of the value was not being checked before allowing a
318
# subscript operation to proceed.
319
 
320
proc test_subscript_regression {lang} {
321
 
322
 global srcdir subdir srcfile binfile testfile hex
323
 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable "debug $lang"] != "" } {
324
     untested "Couldn't compile ${srcfile} in $lang mode"
325
     return -1
326
 }
327
 
328
 # Start with a fresh gdb.
329
 gdb_exit
330
 gdb_start
331
 gdb_reinitialize_dir $srcdir/$subdir
332
 gdb_load ${binfile}
333
 
334
 if ![runto_main ] then {
335
     perror "couldn't run to breakpoint"
336
     return
337
 }
338
 
339
 if {$lang == "c++"} {
340
     gdb_breakpoint [gdb_get_line_number "break to inspect pointer by reference"]
341
     gdb_continue_to_breakpoint "break to inspect pointer by reference"
342
 
343
     gdb_py_test_silent_cmd "print rptr_int" \
344
         "Obtain address" 1
345
     gdb_py_test_silent_cmd "python rptr = gdb.history(0)" \
346
         "Obtains value from GDB" 1
347
     gdb_test "python print rptr\[0\]" "2" "Check pointer passed as reference"
348
 }
349
 
350
 gdb_breakpoint [gdb_get_line_number "break to inspect struct and union"]
351
 gdb_continue_to_breakpoint "break to inspect struct and union"
352
 
353
 gdb_py_test_silent_cmd "python intv = gdb.Value(1)" \
354
     "Create a value for subscript test" 1
355
 gdb_py_test_silent_cmd "python stringv = gdb.Value(\"foo\")" \
356
     "Create a value for subscript test" 1
357
 
358
 # Try to access an int with a subscript.  This should fail.
359
 gdb_test "python print intv" "1" "Baseline print of a Python value"
360
 gdb_test "python print intv\[0\]" "RuntimeError: Cannot subscript requested type.*" \
361
     "Attempt to access an integer with a subscript"
362
 
363
 # Try to access a string with a subscript.  This should pass.
364
 gdb_test "python print stringv" "foo." "Baseline print of a Python value"
365
 gdb_test "python print stringv\[0\]" "f." "Attempt to access a string with a subscript"
366
 
367
 # Try to access an int array via a pointer with a subscript.  This should pass.
368
 gdb_py_test_silent_cmd "print p" "Build pointer to array" 1
369
 gdb_py_test_silent_cmd "python pointer = gdb.history(0)" "" 1
370
 gdb_test "python print pointer\[0\]" "1" "Access array via pointer with int subscript"
371
 gdb_test "python print pointer\[intv\]" "2" "Access array via pointer with value subscript"
372
 
373
 # Try to access a single dimension array with a subscript to the
374
 # result.  This should fail.
375
 gdb_test "python print pointer\[intv\]\[0\]" "RuntimeError: Cannot subscript requested type.*" \
376
     "Attempt to access an integer with a subscript"
377
 
378
 # Lastly, test subscript access to an array with multiple
379
 # dimensions.  This should pass.
380
 gdb_py_test_silent_cmd "print {\"fu \",\"foo\",\"bar\"}" "Build array" 1
381
 gdb_py_test_silent_cmd "python marray = gdb.history(0)" "" 1
382
 gdb_test "python print marray\[1\]\[2\]" "o." "Test multiple subscript"
383
}
384
 
385
# A few tests of gdb.parse_and_eval.
386
proc test_parse_and_eval {} {
387
  gdb_test "python print gdb.parse_and_eval ('23')" "23" \
388
    "parse_and_eval constant test"
389
  gdb_test "python print gdb.parse_and_eval ('5 + 7')" "12" \
390
    "parse_and_eval simple expression test"
391
  gdb_test "python print type(gdb.parse_and_eval ('5 + 7'))" \
392
    ".type 'gdb.Value'."\
393
    "parse_and_eval type test"
394
}
395
 
396
# Test that values are hashable.
397
proc test_value_hash {} {
398
  gdb_py_test_multiple "Simple Python value dictionary" \
399
    "python" "" \
400
    "one = gdb.Value(1)" "" \
401
    "two = gdb.Value(2)" "" \
402
    "three = gdb.Value(3)" "" \
403
    "vdict = {one:\"one str\",two:\"two str\",three:\"three str\"}" "" \
404
    "end"
405
    gdb_test "python print vdict\[one\]" "one str" "Test dictionary hash"
406
    gdb_test "python print vdict\[two\]" "two str" "Test dictionary hash"
407
    gdb_test "python print vdict\[three\]" "three str" "Test dictionary hash"
408
    gdb_test "python print one.__hash__() == hash(one)" "True" "Test inbuilt hash"
409
}
410
 
411
 
412
# Start with a fresh gdb.
413
 
414
gdb_exit
415
gdb_start
416
gdb_reinitialize_dir $srcdir/$subdir
417
gdb_load ${binfile}
418
 
419
# Skip all tests if Python scripting is not enabled.
420
if { [skip_python_tests] } { continue }
421
 
422
test_value_creation
423
test_value_numeric_ops
424
test_value_boolean
425
test_value_compare
426
test_objfiles
427
test_parse_and_eval
428
test_value_hash
429
 
430
# The following tests require execution.
431
 
432
if ![runto_main] then {
433
    fail "Can't run to main"
434
    return 0
435
}
436
 
437
test_value_in_inferior
438
test_lazy_strings
439
test_value_after_death
440
 
441
# The following test recompiles the binary to test either C or C++
442
# values.
443
test_subscript_regression "c++"
444
test_subscript_regression "c"

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.