QUIC-Tracker / quic-tracker

A test suite for QUIC
https://quic-tracker.info.ucl.ac.be
GNU Affero General Public License v3.0
75 stars 16 forks source link

Runtime error on executing test_suite.go #19

Closed piano-man closed 4 years ago

piano-man commented 4 years ago

I get the following error on executing test_suite.go Any specific reason for this ?

starting ack_ecn against quic.tech
starting ack_only against quic.tech
starting address_validation against quic.tech
starting connection_migration against quic.tech
starting connection_migration_v4_v6 against quic.tech
starting flow_control against quic.tech
starting handshake against quic.tech
starting handshake_v6 against quic.tech
panic: runtime error: index out of range [1] with length 1
goroutine 1 [running]:
main.main()
/root/go/src/github.com/QUIC-Tracker/quic-tracker/bin/test_suite/test_suite.go:108 +0x1470
exit status 2

mpiraux commented 4 years ago

What is the content of the hosts file your provided ?

https://github.com/QUIC-Tracker/quic-tracker/blob/master/bin/test_suite/test_suite.go#L108 looks like a parsing error to me.

piano-man commented 4 years ago

This is what my host file contains(tab separated values) -

quic.tech        /index.html        8443        hq
mpiraux commented 4 years ago

The first value should also contain the port number, e.g. quic-tech:4433 as in the one in the repo.

piano-man commented 4 years ago

Oh alright. Thanks !