Skip to content

Commit 349e82e

Browse files
authored
Added option for robot_ip as runtime argument for rtde_test (UniversalRobots#71)
1 parent 2e3bb81 commit 349e82e

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

tests/test_rtde_client.cpp

+10-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
using namespace urcl;
3333

34-
const std::string ROBOT_IP = "192.168.56.101";
34+
std::string ROBOT_IP = "192.168.56.101";
3535

3636
TEST(UrRobotDriver, rtde_handshake)
3737
{
@@ -85,5 +85,14 @@ int main(int argc, char* argv[])
8585
{
8686
::testing::InitGoogleTest(&argc, argv);
8787

88+
for (int i = 0; i < argc; i++)
89+
{
90+
if (std::string(argv[i]) == "--robot_ip" && i + 1 < argc)
91+
{
92+
ROBOT_IP = argv[i + 1];
93+
break;
94+
}
95+
}
96+
8897
return RUN_ALL_TESTS();
8998
}

0 commit comments

Comments
 (0)