From bc8f4ef1c80b06c49bc7d25d41ea2d58bfcb42b8 Mon Sep 17 00:00:00 2001 From: Alessandro Decina Date: Sun, 9 Apr 2023 12:14:01 +1000 Subject: [PATCH] integration-tests: rename relocations to btf_relocations In preparation of adding actual ELF relocation tests --- .../src/tests/{relocations.rs => btf_relocations.rs} | 0 test/integration-test/src/tests/mod.rs | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename test/integration-test/src/tests/{relocations.rs => btf_relocations.rs} (100%) diff --git a/test/integration-test/src/tests/relocations.rs b/test/integration-test/src/tests/btf_relocations.rs similarity index 100% rename from test/integration-test/src/tests/relocations.rs rename to test/integration-test/src/tests/btf_relocations.rs diff --git a/test/integration-test/src/tests/mod.rs b/test/integration-test/src/tests/mod.rs index ddb1b504..b7a171b1 100644 --- a/test/integration-test/src/tests/mod.rs +++ b/test/integration-test/src/tests/mod.rs @@ -4,10 +4,10 @@ use libc::{uname, utsname}; use regex::Regex; use std::{ffi::CStr, mem}; +pub mod btf_relocations; pub mod elf; pub mod load; pub mod rbpf; -pub mod relocations; pub mod smoke; pub use integration_test_macros::integration_test;