Give superstructure_lib_test more time to run
Turns out unoptimized it takes eons.
Change-Id: Ia74ad3d276bbe8873fab4229422ee54dc564836c
diff --git a/y2018/control_loops/superstructure/BUILD b/y2018/control_loops/superstructure/BUILD
index efe0c1d..a646ab6 100644
--- a/y2018/control_loops/superstructure/BUILD
+++ b/y2018/control_loops/superstructure/BUILD
@@ -36,6 +36,7 @@
cc_test(
name = "superstructure_lib_test",
+ timeout = "long",
srcs = [
"superstructure_lib_test.cc",
],
@@ -44,9 +45,9 @@
":superstructure_queue",
"//aos:math",
"//aos:queues",
- "//aos/time:time",
"//aos/controls:control_loop_test",
"//aos/testing:googletest",
+ "//aos/time",
"//frc971/control_loops:position_sensor_sim",
"//frc971/control_loops:team_number_test_environment",
"//y2018/control_loops/superstructure/intake:intake_plants",
@@ -67,12 +68,12 @@
cc_library(
name = "debouncer",
- hdrs = [
- "debouncer.h",
- ],
srcs = [
"debouncer.cc",
],
+ hdrs = [
+ "debouncer.h",
+ ],
)
cc_test(