about summary refs log tree commit homepage
path: root/t
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2023-11-26 02:11:02 +0000
committerEric Wong <e@80x24.org>2023-11-26 19:34:55 +0000
commitef94b82e4b9f89d543b005fcf8c7f184db87c4f9 (patch)
tree78195544a3cda7b3987660cd0aa3a2f2aa93c36c /t
parentb3a13a6f051202caaa4b71cc8dc3510544b8d05c (diff)
downloadpublic-inbox-ef94b82e4b9f89d543b005fcf8c7f184db87c4f9.tar.gz
This also reduces repetition in the setup code.
Diffstat (limited to 't')
-rw-r--r--t/xap_helper.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/xap_helper.t b/t/xap_helper.t
index 02e5ec7d..e3abeded 100644
--- a/t/xap_helper.t
+++ b/t/xap_helper.t
@@ -149,7 +149,7 @@ unless ($ENV{TEST_XH_CXX_ONLY}) {
 SKIP: {
         require PublicInbox::XapHelperCxx;
         my $cmd = eval { PublicInbox::XapHelperCxx::cmd() };
-        skip "XapHelperCxx build: $@", 1 if $@ || $ENV{PI_NO_CXX};
+        skip "XapHelperCxx build: $@", 1 if $@;
 
         @NO_CXX = $ENV{TEST_XH_CXX_ONLY} ? (0) : (0, 1);
         my $ar = $test->(@$cmd, '-j0');