about summary refs log tree commit diff
path: root/tvix/glue/build.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tvix/glue/build.rs')
-rw-r--r--tvix/glue/build.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/tvix/glue/build.rs b/tvix/glue/build.rs
new file mode 100644
index 000000000000..544c34a6cbcb
--- /dev/null
+++ b/tvix/glue/build.rs
@@ -0,0 +1,6 @@
+fn main() {
+    // Pick up new test case files
+    // https://github.com/la10736/rstest/issues/256
+    println!("cargo:rerun-if-changed=src/tests/nix_tests");
+    println!("cargo:rerun-if-changed=src/tests/tvix_tests")
+}