device: remove unused trie test code
Signed-off-by: Josh Bleecher Snyder <josh@tailscale.com>
This commit is contained in:
parent
f07177c762
commit
6a2ecb581b
@ -20,26 +20,6 @@ type testPairCommonBits struct {
|
|||||||
match uint
|
match uint
|
||||||
}
|
}
|
||||||
|
|
||||||
type testPairTrieInsert struct {
|
|
||||||
key []byte
|
|
||||||
cidr uint
|
|
||||||
peer *Peer
|
|
||||||
}
|
|
||||||
|
|
||||||
type testPairTrieLookup struct {
|
|
||||||
key []byte
|
|
||||||
peer *Peer
|
|
||||||
}
|
|
||||||
|
|
||||||
func printTrie(t *testing.T, p *trieEntry) {
|
|
||||||
if p == nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
t.Log(p)
|
|
||||||
printTrie(t, p.child[0])
|
|
||||||
printTrie(t, p.child[1])
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestCommonBits(t *testing.T) {
|
func TestCommonBits(t *testing.T) {
|
||||||
|
|
||||||
tests := []testPairCommonBits{
|
tests := []testPairCommonBits{
|
||||||
|
Loading…
Reference in New Issue
Block a user