Index: system_test/replication_testsuite/replica_basic_test.py =================================================================== --- system_test/replication_testsuite/replica_basic_test.py (revision 1418565) +++ system_test/replication_testsuite/replica_basic_test.py (working copy) @@ -128,6 +128,11 @@ consumerMultiTopicsMode = self.testcaseEnv.testcaseArgumentsDict["consumer_multi_topics_mode"] except: pass + autoCreateTopic = "false" + try: + autoCreateTopic = self.testcaseEnv.testcaseArgumentsDict["auto_create_topic"] + except: + pass # initialize self.testcaseEnv with user-defined environment variables (product specific) @@ -179,10 +184,11 @@ self.anonLogger.info("sleeping for 5s") time.sleep(5) - self.log_message("creating topics") - kafka_system_test_utils.create_topic(self.systemTestEnv, self.testcaseEnv) - self.anonLogger.info("sleeping for 5s") - time.sleep(5) + if autoCreateTopic.lower() == "false": + self.log_message("creating topics") + kafka_system_test_utils.create_topic(self.systemTestEnv, self.testcaseEnv) + self.anonLogger.info("sleeping for 5s") + time.sleep(5) # ============================================= # start ConsoleConsumer if this is a Log Retention test Index: system_test/testcase_to_run.json =================================================================== --- system_test/testcase_to_run.json (revision 1418565) +++ system_test/testcase_to_run.json (working copy) @@ -1,5 +1,5 @@ { "ReplicaBasicTest" : [ - "testcase_9051" + "testcase_0001" ] }