|
24 | 24 | #include "src/common/testing/testing.h" |
25 | 25 | #include "src/stirling/utils/detect_application.h" |
26 | 26 |
|
27 | | -constexpr std::string_view kTestGo1_17Binary = |
28 | | - "src/stirling/obj_tools/testdata/go/test_go_1_17_binary"; |
29 | | -constexpr std::string_view kTestGo1_18Binary = |
30 | | - "src/stirling/obj_tools/testdata/go/test_go_1_18_binary"; |
31 | | -constexpr std::string_view kTestGo1_19Binary = |
32 | | - "src/stirling/obj_tools/testdata/go/test_go_1_19_binary"; |
33 | | -constexpr std::string_view kTestGo1_20Binary = |
34 | | - "src/stirling/obj_tools/testdata/go/test_go_1_20_binary"; |
35 | | -constexpr std::string_view kTestGo1_21Binary = |
36 | | - "src/stirling/obj_tools/testdata/go/test_go_1_21_binary"; |
37 | | -constexpr std::string_view kTestGo1_22Binary = |
38 | | - "src/stirling/obj_tools/testdata/go/test_go_1_22_binary"; |
39 | 27 | constexpr std::string_view kTestGo1_23Binary = |
40 | 28 | "src/stirling/obj_tools/testdata/go/test_go_1_23_binary"; |
| 29 | +constexpr std::string_view kTestGo1_24Binary = |
| 30 | + "src/stirling/obj_tools/testdata/go/test_go_1_23_binary"; |
41 | 31 | constexpr std::string_view kGoGRPCServer = |
42 | | - "src/stirling/testing/demo_apps/go_grpc_tls_pl/server/golang_1_19_grpc_tls_server_binary"; |
| 32 | + "src/stirling/testing/demo_apps/go_grpc_tls_pl/server/golang_1_24_grpc_tls_server_binary"; |
43 | 33 | constexpr std::string_view kCppBinary = "src/stirling/obj_tools/testdata/cc/test_exe_/test_exe"; |
44 | 34 | constexpr std::string_view kGoBinaryUnconventional = |
45 | 35 | "src/stirling/obj_tools/testdata/go/sockshop_payments_service"; |
46 | 36 |
|
47 | 37 | const auto kCPPBinaryPath = px::testing::BazelRunfilePath(kCppBinary); |
48 | | -const auto kGo1_17BinaryPath = px::testing::BazelRunfilePath(kTestGo1_17Binary); |
49 | | -const auto kGo1_18BinaryPath = px::testing::BazelRunfilePath(kTestGo1_18Binary); |
50 | | -const auto kGo1_19BinaryPath = px::testing::BazelRunfilePath(kTestGo1_19Binary); |
51 | | -const auto kGo1_20BinaryPath = px::testing::BazelRunfilePath(kTestGo1_20Binary); |
52 | | -const auto kGo1_21BinaryPath = px::testing::BazelRunfilePath(kTestGo1_21Binary); |
53 | | -const auto kGo1_22BinaryPath = px::testing::BazelRunfilePath(kTestGo1_22Binary); |
54 | 38 | const auto kGo1_23BinaryPath = px::testing::BazelRunfilePath(kTestGo1_23Binary); |
| 39 | +const auto kGo1_24BinaryPath = px::testing::BazelRunfilePath(kTestGo1_24Binary); |
55 | 40 | const auto kGoServerBinaryPath = px::testing::BazelRunfilePath(kGoGRPCServer); |
56 | 41 | const auto kGoBinaryUnconventionalPath = px::testing::BazelRunfilePath(kGoBinaryUnconventional); |
57 | 42 |
|
@@ -578,20 +563,10 @@ INSTANTIATE_TEST_SUITE_P(CppDwarfReaderParameterizedTest, CppDwarfReaderTest, |
578 | 563 | DwarfReaderTestParam{kCPPBinaryPath, false})); |
579 | 564 |
|
580 | 565 | INSTANTIATE_TEST_SUITE_P(GolangDwarfReaderParameterizedTest, GolangDwarfReaderTest, |
581 | | - ::testing::Values(DwarfReaderTestParam{kGo1_17BinaryPath, true}, |
582 | | - DwarfReaderTestParam{kGo1_17BinaryPath, false}, |
583 | | - DwarfReaderTestParam{kGo1_18BinaryPath, true}, |
584 | | - DwarfReaderTestParam{kGo1_18BinaryPath, false}, |
585 | | - DwarfReaderTestParam{kGo1_19BinaryPath, true}, |
586 | | - DwarfReaderTestParam{kGo1_19BinaryPath, false}, |
587 | | - DwarfReaderTestParam{kGo1_20BinaryPath, true}, |
588 | | - DwarfReaderTestParam{kGo1_20BinaryPath, false}, |
589 | | - DwarfReaderTestParam{kGo1_21BinaryPath, true}, |
590 | | - DwarfReaderTestParam{kGo1_21BinaryPath, false}, |
591 | | - DwarfReaderTestParam{kGo1_22BinaryPath, true}, |
592 | | - DwarfReaderTestParam{kGo1_22BinaryPath, false}, |
593 | | - DwarfReaderTestParam{kGo1_23BinaryPath, true}, |
594 | | - DwarfReaderTestParam{kGo1_23BinaryPath, false})); |
| 566 | + ::testing::Values(DwarfReaderTestParam{kGo1_23BinaryPath, true}, |
| 567 | + DwarfReaderTestParam{kGo1_23BinaryPath, false}, |
| 568 | + DwarfReaderTestParam{kGo1_24BinaryPath, true}, |
| 569 | + DwarfReaderTestParam{kGo1_24BinaryPath, false})); |
595 | 570 |
|
596 | 571 | INSTANTIATE_TEST_SUITE_P(GolangDwarfReaderParameterizedIndexTest, GolangDwarfReaderIndexTest, |
597 | 572 | ::testing::Values(true, false)); |
|
0 commit comments