jump +1
jumps to the next line line i.e. skipping the current line. You may also want to combine it with tbreak +1 to set a temporary breakpoint at the jump target.
See http://sourceware.org/gdb/current/onlinedocs/gdb/Specify-Location.html for more ways of expressing locations with gdb.
Note that without a breakpoint gdb is likely to continue execution normally instead of jumping. So if jumping doesn’t seem to work, make sure you set a breakpoint at the destination.