• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #[test]
test_tool_exec()2 pub fn test_tool_exec() {
3     let tool_path = env!("TOOL_PATH");
4     assert!(
5         tool_path.contains("-exec-"),
6         "tool_path did not contain '-exec-'",
7     );
8 }
9