[opentitanlib] Add testdata! macro

Some OT Tool tests use files located in a "testdata" directory. Add a
macro that can resolve this path in in the bazel build environment.

Signed-off-by: Jon Flatley <jflat@google.com>
diff --git a/sw/host/opentitanlib/src/otp/lc_state.rs b/sw/host/opentitanlib/src/otp/lc_state.rs
index 5592738..0f45c90 100644
--- a/sw/host/opentitanlib/src/otp/lc_state.rs
+++ b/sw/host/opentitanlib/src/otp/lc_state.rs
@@ -73,14 +73,14 @@
 #[cfg(test)]
 mod tests {
     use super::*;
-    use crate::otp::tests::testdata;
+    use crate::testdata;
     use anyhow::Result;
     use deser_hjson::from_str;
     use std::fs::read_to_string;
 
     #[test]
     fn test_lc_state_deserialize() -> Result<()> {
-        let _: LcState = from_str(&read_to_string(&testdata("lc_ctrl_state.hjson"))?)?;
+        let _: LcState = from_str(&read_to_string(&testdata!("lc_ctrl_state.hjson"))?)?;
         Ok(())
     }