commit 549a450f52124405eb75b781fc1686e81461327b Author: Nick Mathewson nickm@torproject.org Date: Thu Feb 8 17:51:57 2018 -0500
Add a "make test-rust" target to run the rust tests only. --- changes/ticket25071 | 4 ++++ src/test/include.am | 2 ++ 2 files changed, 6 insertions(+)
diff --git a/changes/ticket25071 b/changes/ticket25071 new file mode 100644 index 000000000..5e2917e10 --- /dev/null +++ b/changes/ticket25071 @@ -0,0 +1,4 @@ + o Minor features (testing): + - Add a "make test-rust" target to run the rust tests only. + Closes ticket 25071. + diff --git a/src/test/include.am b/src/test/include.am index 9783f93d5..fd70cc345 100644 --- a/src/test/include.am +++ b/src/test/include.am @@ -358,3 +358,5 @@ EXTRA_DIST += \ src/test/test_workqueue_pipe2.sh \ src/test/test_workqueue_socketpair.sh
+test-rust: + $(TESTS_ENVIRONMENT) $(abs_top_srcdir)/src/test/test_rust.sh