skip graphdata distributed test case when asan mode

This commit is contained in:
jonyguo 2020-09-27 15:34:50 +08:00
parent 26b89e9abb
commit 19ca9762db
1 changed files with 6 additions and 0 deletions

View File

@ -13,6 +13,7 @@
# limitations under the License. # limitations under the License.
# ============================================================================== # ==============================================================================
import os
import random import random
import time import time
from multiprocessing import Process from multiprocessing import Process
@ -81,6 +82,11 @@ def test_graphdata_distributed():
""" """
Test distributed Test distributed
""" """
ASAN = os.environ.get('ASAN_OPTIONS')
if ASAN:
logger.info("skip the graphdata distributed when asan mode")
return
logger.info('test distributed.\n') logger.info('test distributed.\n')
server_port = random.randint(10000, 60000) server_port = random.randint(10000, 60000)