Home | History | Annotate | Download | only in quipper

Lines Matching refs:command

19 // Runs "perf record" to see if the command is available on the current system.
27 // Runs "perf mem record" to see if the command is available on the current
55 const auto& command = string_meta.perf_command_line_token();
56 EXPECT_EQ(GetPerfPath(), command.Get(0).value());
57 EXPECT_EQ("record", command.Get(1).value());
58 EXPECT_EQ("-o", command.Get(2).value());
60 // Unpredictable: EXPECT_EQ("/tmp/quipper.XXXXXX", command.Get(3).value());
62 EXPECT_EQ(strlen("/tmp/quipper.XXXXXX"), command.Get(3).value().size());
64 command.Get(3).value().substr(0, strlen("/tmp/quipper")));
66 EXPECT_EQ("--", command.Get(4).value());
67 EXPECT_EQ("sleep", command.Get(5).value());
68 EXPECT_EQ("0.2", command.Get(6).value());