ChrisHegarty commented on code in PR #13339: URL: https://github.com/apache/lucene/pull/13339#discussion_r1589316210
########## lucene/core/src/java/org/apache/lucene/internal/vectorization/VectorizationProvider.java: ########## @@ -198,6 +201,11 @@ private static void ensureCaller() { private static final class Holder { private Holder() {} - static final VectorizationProvider INSTANCE = lookup(false); + // TODO: this is not quite right. But we should be able to run tests with Panama Vector + static boolean testMode() { + return TESTS_VECTOR_SIZE.isPresent() || TESTS_FORCE_INTEGER_VECTORS; Review Comment: ha! yes. I forgot. Thanks for the reminder. I'll use that for testing. reverted the source change. ``` export CI=true; ./gradlew :lucene:core:test ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For additional commands, e-mail: issues-h...@lucene.apache.org