Home | History | Annotate | Download | only in gdb.base

Lines Matching refs:script

16 # Create a GDB script that we can source.  The script needs to generate
18 set script [standard_output_file zzz-gdbscript]
19 set fd [open $script "w"]
24 # The expected output from the script...
32 # Test sourcing of the script with interactive mode `auto'.
33 # Verify that evaluating the script does not cause an unexpected
36 gdb_test "source $script" "$script_output" \
37 "source script with interactive-mode auto"
43 # Test sourcing of the script with interactive mode `on'.
44 # Verify that evaluating the script does not cause an unexpected
47 gdb_test "source $script" "$script_output" \
48 "source script with interactive-mode on"
54 # Test sourcing of the script with interactive mode `off'.
55 # Verify that evaluating the script does not cause an unexpected
58 gdb_test "source $script" "$script_output" \
59 "source script with interactive-mode off"