aboutsummaryrefslogtreecommitdiff
path: root/runtime/tools
diff options
context:
space:
mode:
authorAndrey Churbanov <Andrey.Churbanov@intel.com>2015-04-29 14:36:38 +0000
committerAndrey Churbanov <Andrey.Churbanov@intel.com>2015-04-29 14:36:38 +0000
commit1d0ad7f8a7f6a7fe5e83df53db099dc6d60a0894 (patch)
tree31e2121029b0422dbd2c49b3ad5069a7469b47fc /runtime/tools
parent0c6d80bd14a430a9dfccd09e12a645dccac9e1a6 (diff)
UH OpenMP testsuite update
git-svn-id: https://llvm.org/svn/llvm-project/openmp/trunk@236105 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'runtime/tools')
-rwxr-xr-xruntime/tools/check-openmp-test.pl18
-rwxr-xr-xruntime/tools/check-openmp.pl18
2 files changed, 36 insertions, 0 deletions
diff --git a/runtime/tools/check-openmp-test.pl b/runtime/tools/check-openmp-test.pl
new file mode 100755
index 0000000..2e64a74
--- /dev/null
+++ b/runtime/tools/check-openmp-test.pl
@@ -0,0 +1,18 @@
+#!/usr/bin/perl
+
+use strict;
+use warnings;
+
+use FindBin;
+use lib "$FindBin::Bin/lib";
+
+# LIBOMP modules.
+use Build;
+use LibOMP;
+use Platform ":vars";
+use Uname;
+use tools;
+
+my $root_dir = $ENV{ LIBOMP_WORK };
+print join('', $target_platform, "/");
+
diff --git a/runtime/tools/check-openmp.pl b/runtime/tools/check-openmp.pl
new file mode 100755
index 0000000..60334d7
--- /dev/null
+++ b/runtime/tools/check-openmp.pl
@@ -0,0 +1,18 @@
+#!/usr/bin/perl
+
+use strict;
+use warnings;
+
+use FindBin;
+use lib "$FindBin::Bin/lib";
+
+# LIBOMP modules.
+use Build;
+use LibOMP;
+use Platform ":vars";
+use Uname;
+use tools;
+
+my $root_dir = $ENV{ LIBOMP_WORK };
+print join('', $root_dir, "/", "exports", "/", $target_platform, "/", "lib");
+