diff options
author | Andrey Churbanov <Andrey.Churbanov@intel.com> | 2015-04-29 14:36:38 +0000 |
---|---|---|
committer | Andrey Churbanov <Andrey.Churbanov@intel.com> | 2015-04-29 14:36:38 +0000 |
commit | a951e210872adb18dbca7eb8b0832bd3a6fde416 (patch) | |
tree | 5971fd073129498a25703fc149a08c4c00164529 /openmp/runtime/tools | |
parent | dfddebcfb9fa9d756518015fd31cddcc9eb1459e (diff) | |
download | bcm5719-llvm-a951e210872adb18dbca7eb8b0832bd3a6fde416.tar.gz bcm5719-llvm-a951e210872adb18dbca7eb8b0832bd3a6fde416.zip |
UH OpenMP testsuite update
llvm-svn: 236105
Diffstat (limited to 'openmp/runtime/tools')
-rwxr-xr-x | openmp/runtime/tools/check-openmp-test.pl | 18 | ||||
-rwxr-xr-x | openmp/runtime/tools/check-openmp.pl | 18 |
2 files changed, 36 insertions, 0 deletions
diff --git a/openmp/runtime/tools/check-openmp-test.pl b/openmp/runtime/tools/check-openmp-test.pl new file mode 100755 index 00000000000..2e64a74053e --- /dev/null +++ b/openmp/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/openmp/runtime/tools/check-openmp.pl b/openmp/runtime/tools/check-openmp.pl new file mode 100755 index 00000000000..60334d7f026 --- /dev/null +++ b/openmp/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"); + |