blob: 60124e4fb77c5e4118a1a227667a9e5fbb211547 [file] [log] [blame]
# Shut up a warning about us not being a real package.
from __future__ import absolute_import
import platform
def build_unsupported(_test):
if platform.system() == "Windows":
# This test is specifically checking that we can handle all the
# different C++ source extensions, including those that differ only by
# case. Windows is case insensitive, so this test fails hard.
return platform.system()
return None