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-6.8/] [pre-binutils-2.20.1-sync/] [gdb/] [testsuite/] [gdb.server/] [file-transfer.exp] - Diff between revs 157 and 223

Only display areas with differences | Details | Blame | View Log

Rev 157 Rev 223
# This testcase is part of GDB, the GNU debugger.
# This testcase is part of GDB, the GNU debugger.
# Copyright 2007, 2008 Free Software Foundation, Inc.
# Copyright 2007, 2008 Free Software Foundation, Inc.
# This program is free software; you can redistribute it and/or modify
# 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
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
# (at your option) any later version.
#
#
# This program is distributed in the hope that it will be useful,
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# GNU General Public License for more details.
#
#
# You should have received a copy of the GNU General Public License
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see .
# along with this program.  If not, see .
# Test gdbserver monitor commands.
# Test gdbserver monitor commands.
load_lib gdbserver-support.exp
load_lib gdbserver-support.exp
set testfile "server"
set testfile "server"
set srcfile ${testfile}.c
set srcfile ${testfile}.c
set binfile ${objdir}/${subdir}/${testfile}
set binfile ${objdir}/${subdir}/${testfile}
if { [skip_gdbserver_tests] } {
if { [skip_gdbserver_tests] } {
    return 0
    return 0
}
}
if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
    untested file-transfer.exp
    untested file-transfer.exp
    return -1
    return -1
}
}
gdb_exit
gdb_exit
gdb_start
gdb_start
gdb_load $binfile
gdb_load $binfile
gdb_reinitialize_dir $srcdir/$subdir
gdb_reinitialize_dir $srcdir/$subdir
gdbserver_run ""
gdbserver_run ""
proc test_file_transfer { filename description } {
proc test_file_transfer { filename description } {
    gdb_test "remote put \"$filename\" down-server" \
    gdb_test "remote put \"$filename\" down-server" \
        "Successfully sent .*" "put $description"
        "Successfully sent .*" "put $description"
    gdb_test "remote get down-server up-server" \
    gdb_test "remote get down-server up-server" \
        "Successfully fetched .*" "get $description"
        "Successfully fetched .*" "get $description"
    if { ![is_remote target] } {
    if { ![is_remote target] } {
        # If we can check the target copy of the file, do that too.
        # If we can check the target copy of the file, do that too.
        # This should catch symmetric errors in upload and download.
        # This should catch symmetric errors in upload and download.
        set result [remote_exec host "cmp -s $filename down-server"]
        set result [remote_exec host "cmp -s $filename down-server"]
        if { [lindex $result 0] == 0 } {
        if { [lindex $result 0] == 0 } {
            pass "compare intermediate $description"
            pass "compare intermediate $description"
        } else {
        } else {
            fail "compare intermediate $description"
            fail "compare intermediate $description"
        }
        }
    }
    }
    set result [remote_exec host "cmp -s $filename up-server"]
    set result [remote_exec host "cmp -s $filename up-server"]
    if { [lindex $result 0] == 0 } {
    if { [lindex $result 0] == 0 } {
        pass "compare $description"
        pass "compare $description"
    } else {
    } else {
        fail "compare $description"
        fail "compare $description"
    }
    }
    gdb_test "remote delete down-server" \
    gdb_test "remote delete down-server" \
        "Successfully deleted .*" "deleted $description"
        "Successfully deleted .*" "deleted $description"
    if { ![is_remote target] } {
    if { ![is_remote target] } {
        if { ! [remote_file target exists down-server] } {
        if { ! [remote_file target exists down-server] } {
            pass "verified deleted $description"
            pass "verified deleted $description"
        } else {
        } else {
            fail "verified deleted $description"
            fail "verified deleted $description"
        }
        }
    }
    }
    catch { file delete up-server }
    catch { file delete up-server }
}
}
test_file_transfer "$binfile" "binary file"
test_file_transfer "$binfile" "binary file"
test_file_transfer "$srcdir/$subdir/transfer.txt" "text file"
test_file_transfer "$srcdir/$subdir/transfer.txt" "text file"
 
 

powered by: WebSVN 2.1.0

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