#!/usr/bin/env python3

import os

# Skip this test for gasnet+mpi performance testing. As of 06/01/22 it
# takes ~5-6 minutes to complete which is not terrible, but is more
# time than we want to spend on it and bumping up against our timeout.

print(os.getenv('CHPL_TEST_PERF') == 'on' and
      os.getenv('CHPL_COMM') == 'gasnet' and
      os.getenv('CHPL_COMM_SUBSTRATE') == 'mpi')


