miklosgergely commented on a change in pull request #1000:
URL: https://github.com/apache/hive/pull/1000#discussion_r419613747
##########
File path: itests/bin/generate-cli-splits.sh
##########
@@ -0,0 +1,26 @@
+#!/bin/bash
+
+usage() {
+ echo "$0 <from> <to>"
+ exit 1
+}
+
+[ "$1" == "" ] && usage
+[ "$2" == "" ] && usage
+
+
+inDir="$1"
+outDir="$2"
+
+git grep SplitSupport.process | grep "$1" | cut -d ':' -f1|while read f;do
Review comment:
As I see in this model the number of batches would be fixed, not the
number of tests in a batch. I see why is this useful for generating the files,
but it would be better to fix the batch size.
How the isolated tests are going to be handled?
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]