Skip to content

Commit bb483d9

Browse files
jiceathomejuagargi
authored andcommitted
testing: rename "router_newbenchmark" to "router_benchmark" (scionproto#4455)
Since, the original "router_benchmark" has been deleted the "new" prefix is no longer necessary.
1 parent 1a9ca59 commit bb483d9

File tree

16 files changed

+14
-15
lines changed

16 files changed

+14
-15
lines changed

acceptance/router_newbenchmark/BUILD.bazel renamed to acceptance/router_benchmark/BUILD.bazel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ exports_files([
77

88
args = [
99
"--executable",
10-
"brload:$(location //acceptance/router_newbenchmark/brload:brload)",
10+
"brload:$(location //acceptance/router_benchmark/brload:brload)",
1111
"--container-loader=posix-router:latest#$(location //docker:posix_router)",
1212
]
1313

1414
data = [
1515
":conf",
1616
"//docker:posix_router",
17-
"//acceptance/router_newbenchmark/brload:brload",
17+
"//acceptance/router_benchmark/brload:brload",
1818
]
1919

2020
raw_test(

acceptance/router_newbenchmark/brload/BUILD.bazel renamed to acceptance/router_benchmark/brload/BUILD.bazel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ load("//:scion.bzl", "scion_go_binary")
44
go_library(
55
name = "go_default_library",
66
srcs = ["main.go"],
7-
importpath = "github.com/scionproto/scion/acceptance/router_newbenchmark/brload",
7+
importpath = "github.com/scionproto/scion/acceptance/router_benchmark/brload",
88
visibility = ["//visibility:private"],
99
deps = [
10-
"//acceptance/router_newbenchmark/cases:go_default_library",
10+
"//acceptance/router_benchmark/cases:go_default_library",
1111
"//pkg/log:go_default_library",
1212
"//pkg/private/serrors:go_default_library",
1313
"//pkg/scrypto:go_default_library",

acceptance/router_newbenchmark/brload/main.go renamed to acceptance/router_benchmark/brload/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import (
3030
"github.com/google/gopacket/layers"
3131
"github.com/spf13/cobra"
3232

33-
"github.com/scionproto/scion/acceptance/router_newbenchmark/cases"
33+
"github.com/scionproto/scion/acceptance/router_benchmark/cases"
3434
"github.com/scionproto/scion/pkg/log"
3535
"github.com/scionproto/scion/pkg/private/serrors"
3636
"github.com/scionproto/scion/pkg/scrypto"

acceptance/router_newbenchmark/cases/BUILD.bazel renamed to acceptance/router_benchmark/cases/BUILD.bazel

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,9 @@ go_library(
1010
"out_transit.go",
1111
"topo.go",
1212
],
13-
importpath = "github.com/scionproto/scion/acceptance/router_newbenchmark/cases",
13+
importpath = "github.com/scionproto/scion/acceptance/router_benchmark/cases",
1414
visibility = [
15-
"//acceptance/router_newbenchmark:__pkg__",
16-
"//acceptance/router_newbenchmark:__subpackages__",
15+
"//acceptance/router_benchmark:__subpackages__",
1716
],
1817
deps = [
1918
"//pkg/addr:go_default_library",

acceptance/router_newbenchmark/cases/br_transit.go renamed to acceptance/router_benchmark/cases/br_transit.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626
"github.com/scionproto/scion/pkg/slayers/path/scion"
2727
)
2828

29-
// Topology (see accept/router_newbenchmark/conf/topology.json)
29+
// Topology (see accept/router_benchmark/conf/topology.json)
3030
// AS2 (br2) ---+== (br1a) AS1 (br1b) ---- (br4) AS4
3131
// |
3232
// AS3 (br3) ---+

acceptance/router_newbenchmark/cases/in.go renamed to acceptance/router_benchmark/cases/in.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626
"github.com/scionproto/scion/pkg/slayers/path/scion"
2727
)
2828

29-
// Topology (see accept/router_newbenchmark/conf/topology.json)
29+
// Topology (see accept/router_benchmark/conf/topology.json)
3030
// AS2 (br2) ---+== (br1a) AS1 (br1b) ---- (br4) AS4
3131
// |
3232
// AS3 (br3) ---+

acceptance/router_newbenchmark/cases/in_transit.go renamed to acceptance/router_benchmark/cases/in_transit.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626
"github.com/scionproto/scion/pkg/slayers/path/scion"
2727
)
2828

29-
// Topology (see accept/router_newbenchmark/conf/topology.json)
29+
// Topology (see accept/router_benchmark/conf/topology.json)
3030
// AS2 (br2) ---+== (br1a) AS1 (br1b) ---- (br4) AS4
3131
// |
3232
// AS3 (br3) ---+

acceptance/router_newbenchmark/cases/out.go renamed to acceptance/router_benchmark/cases/out.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626
"github.com/scionproto/scion/pkg/slayers/path/scion"
2727
)
2828

29-
// Topology (see accept/router_newbenchmark/conf/topology.json)
29+
// Topology (see accept/router_benchmark/conf/topology.json)
3030
// AS2 (br2) ---+== (br1a) AS1 (br1b) ---- (br4) AS4
3131
// |
3232
// AS3 (br3) ---+

acceptance/router_newbenchmark/cases/out_transit.go renamed to acceptance/router_benchmark/cases/out_transit.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626
"github.com/scionproto/scion/pkg/slayers/path/scion"
2727
)
2828

29-
// Topology (see accept/router_newbenchmark/conf/topology.json)
29+
// Topology (see accept/router_benchmark/conf/topology.json)
3030
// AS2 (br2) ---+== (br1a) AS1 (br1b) ---- (br4) AS4
3131
// |
3232
// AS3 (br3) ---+

acceptance/router_newbenchmark/cases/topo.go renamed to acceptance/router_benchmark/cases/topo.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import (
2828
"github.com/scionproto/scion/pkg/scrypto"
2929
)
3030

31-
// Topology (see accept/router_newbenchmark/conf/topology.json)
31+
// Topology (see accept/router_benchmark/conf/topology.json)
3232
// AS2 (br2) ---+== (br1a) AS1 (br1b) ---- (br4) AS4
3333
// |
3434
// AS3 (br3) ---+

0 commit comments

Comments
 (0)