From 6bafe97bc1e9c66e5e727cdf5160341ae58b4f81 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Thu, 19 Mar 2020 15:25:11 -0400 Subject: Add a TOR_SKIP_TESTCASES environment variable for suppressing tests. For example, "TOR_SKIP_TESTCASES=crypto/.. ./src/test/test" will run the tests and suppress all the "crypto/" tests. You could get the same effect by running "./src/test/test :crypto/..", but that can be harder to arrange from CI. Part of a fix/workaround for 33643. --- changes/ticket33643 | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 changes/ticket33643 (limited to 'changes/ticket33643') diff --git a/changes/ticket33643 b/changes/ticket33643 new file mode 100644 index 0000000000..7fddab74eb --- /dev/null +++ b/changes/ticket33643 @@ -0,0 +1,5 @@ + o Minor features (testing): + - The unit tests now support a "TOR_SKIP_TESTCASES" environment variable + to specify a list of space-separated test cases that should not be + executed. We will use this to disable certain tests that are failing on + Appveyor because of mismatched OpenSSL libraries. Part of ticket 33643. -- cgit v1.2.3-54-g00ecf