From 11306e5113fa2fa6e3416fde3af334635779f210 Mon Sep 17 00:00:00 2001 From: Eric Fiselier Date: Thu, 9 Feb 2017 23:58:54 +0000 Subject: [PATCH] Fix path to libc++'s python test module llvm-svn: 294671 --- libcxxabi/test/lit.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libcxxabi/test/lit.cfg b/libcxxabi/test/lit.cfg index 29d1a3b72854..2e23c564b792 100644 --- a/libcxxabi/test/lit.cfg +++ b/libcxxabi/test/lit.cfg @@ -29,7 +29,7 @@ config.test_source_root = os.path.dirname(__file__) libcxx_src_root = getattr(config, 'libcxx_src_root', None) if not libcxx_src_root: libcxx_src_root = os.path.join(config.test_source_root, '../../libcxx') -libcxx_test_src_root = os.path.join(libcxx_src_root, 'test') +libcxx_test_src_root = os.path.join(libcxx_src_root, 'utils') if os.path.isfile(os.path.join(libcxx_test_src_root, 'libcxx', '__init__.py')): site.addsitedir(libcxx_test_src_root) else: