From 2914a43e42184efe46a7b28caccfbb54c781e795 Mon Sep 17 00:00:00 2001 From: Dan Liew Date: Mon, 13 Jan 2014 17:50:27 +0000 Subject: Added Runtime/POSIX/lit.local.cfg file that prevents the POSIX tests from being executed if not enabled at configure time. --- test/Runtime/POSIX/lit.local.cfg | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 test/Runtime/POSIX/lit.local.cfg diff --git a/test/Runtime/POSIX/lit.local.cfg b/test/Runtime/POSIX/lit.local.cfg new file mode 100644 index 00000000..680351b7 --- /dev/null +++ b/test/Runtime/POSIX/lit.local.cfg @@ -0,0 +1,7 @@ +def getRoot(config): + if not config.parent: + return config + return getRoot(config.parent) + +if not getRoot(config).enable_posix_runtime: + config.unsupported = True -- cgit 1.4.1