Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.39 KB | None | 0 0
  1. (gdb) bt
  2. #0 0x00007ffff646c428 in __GI_raise (sig=sig@entry=6) at ../sysdeps/unix/sysv/linux/raise.c:54
  3. #1 0x00007ffff646e02a in __GI_abort () at abort.c:89
  4. #2 0x00007ffff6464bd7 in __assert_fail_base (fmt=<optimized out>, assertion=assertion@entry=0x780a23 "false", file=file@entry=0x78c920 "/home/mtriggiani/warp17-private/src/tpg_tests_sm.c", line=line@entry=414,
  5. function=function@entry=0x78ce40 <__PRETTY_FUNCTION__.44352> "test_sm_SF_client_to_close") at assert.c:92
  6. #3 0x00007ffff6464c82 in __GI___assert_fail (assertion=assertion@entry=0x780a23 "false", file=file@entry=0x78c920 "/home/mtriggiani/warp17-private/src/tpg_tests_sm.c", line=line@entry=414,
  7. function=function@entry=0x78ce40 <__PRETTY_FUNCTION__.44352> "test_sm_SF_client_to_close") at assert.c:101
  8. #4 0x00000000004a1409 in test_sm_SF_client_to_close (l4_cb=<optimized out>, event=<optimized out>, ctx=<optimized out>) at /home/mtriggiani/warp17-private/src/tpg_tests_sm.c:414
  9. #5 0x000000000048127a in tsm_cleanup_retrans_queu (tcb=tcb@entry=0x15a57617c0, seg_ack=seg_ack@entry=236406) at /home/mtriggiani/warp17-private/src/tpg_tcp_sm.c:306
  10. #6 0x0000000000484b9a in tsm_SF_estab (tcb=0x15a57617c0, event=<optimized out>, tsm_arg=0x12285275c0) at /home/mtriggiani/warp17-private/src/tpg_tcp_sm.c:1319
  11. #7 0x000000000047bc53 in tcp_receive_pkt (pcb=pcb@entry=0x12285275c0, mbuf=<optimized out>, mbuf@entry=0x15fd329040) at /home/mtriggiani/warp17-private/src/tpg_tcp.c:588
  12. #8 0x000000000046879b in ipv4_receive_pkt (pcb=pcb@entry=0x12285275c0, mbuf=<optimized out>, mbuf@entry=0x15fd329040) at /home/mtriggiani/warp17-private/src/tpg_ipv4.c:828
  13. #9 0x0000000000464690 in eth_receive_pkt (pcb=pcb@entry=0x12285275c0, mbuf=0x15fd329040) at /home/mtriggiani/warp17-private/src/tpg_ethernet.c:437
  14. #10 0x000000000046e330 in pkt_receive_loop (arg=<optimized out>) at /home/mtriggiani/warp17-private/src/tpg_pktloop.c:672
  15. #11 0x0000000000513cb1 in eal_thread_loop ()
  16. #12 0x00007ffff68086ba in start_thread (arg=0x7ffff17ab700) at pthread_create.c:333
  17. #13 0x00007ffff653e41d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:109
  18. (gdb)
  19.  
  20.  
  21. # port configs (run only once)
  22. # port 0
  23. # l2
  24. add tests l3_intf port 0 ip 10.0.0.1 mask 255.255.255.0
  25. add tests l3_gw port 0 gw 20.0.0.1
  26. # port 1
  27. # l2
  28. add tests l3_intf port 1 ip 20.0.0.1 mask 255.255.255.0
  29. add tests l3_gw port 1 gw 10.0.0.1
  30.  
  31. # test configs
  32. # port 0 (client)
  33. # l3
  34. add tests client tcp port 0 test-case-id 0 src 10.0.0.1 10.0.0.1 sport 1 4 dest 20.0.0.1 20.0.0.10 dport 1 40000
  35. set tests rate port 0 test-case-id 0 open 50000
  36. set tests timeouts port 0 test-case-id 0 init 1
  37. set tests timeouts port 0 test-case-id 0 uptime 10
  38. set tests timeouts port 0 test-case-id 0 downtime 1
  39. set tests criteria port 0 test-case-id 0 run-time 3600
  40. set tests client http port 0 test-case-id 0 GET google.com /index.html req-size 45056
  41. set tests client http port 0 test-case-id 0 http-field "Content-Type: application/octet-stream"
  42. set tests client http port 0 test-case-id 0 http-field "Expires: Thu, 01 Jan 1970 01:00:00 UTC"
  43. # port 1 (server)
  44. # l3
  45. add tests server tcp port 1 test-case-id 0 src 20.0.0.1 20.0.0.10 sport 1 40000
  46. set tests server http port 1 test-case-id 0 200-OK resp-size 45056
  47. set tests server http port 1 test-case-id 0 http-field "Content-Type: text/plain"
  48. set tests server http port 1 test-case-id 0 http-field "Age: 42"
  49. start tests port 1
  50. start tests port 0
  51. show tests ui
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement