diff options
author | Alexey Bataev <a.bataev@hotmail.com> | 2015-11-02 13:43:32 +0000 |
---|---|---|
committer | Alexey Bataev <a.bataev@hotmail.com> | 2015-11-02 13:43:32 +0000 |
commit | b0eae8d6f4cfbd25e521f86e5e1cfce2a7865316 (patch) | |
tree | 88423afbf8f5f44b8e74a238868b909d6285cef1 /openmp/runtime/test/api/omp_get_wtime.c | |
parent | 54d263c61cb06b2713a1afbdc5f2bbe775fd98b2 (diff) | |
download | bcm5719-llvm-b0eae8d6f4cfbd25e521f86e5e1cfce2a7865316.tar.gz bcm5719-llvm-b0eae8d6f4cfbd25e521f86e5e1cfce2a7865316.zip |
[OPENMP] Add dependency to clang/clang-headers etc. for in-tree build of libomp.
Add additional dependency to clang/clang-headers/FileCheck to avoid possible troubles with in-tree build/test of libomp + allow parallel testing of libomp. Also includes bugfixes for tests + improvements to avoid possible race conditions.
Differential Revision: http://reviews.llvm.org/D14055
llvm-svn: 251797
Diffstat (limited to 'openmp/runtime/test/api/omp_get_wtime.c')
-rw-r--r-- | openmp/runtime/test/api/omp_get_wtime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openmp/runtime/test/api/omp_get_wtime.c b/openmp/runtime/test/api/omp_get_wtime.c index c93c2a5b4b3..d91312b2f77 100644 --- a/openmp/runtime/test/api/omp_get_wtime.c +++ b/openmp/runtime/test/api/omp_get_wtime.c @@ -9,7 +9,7 @@ int test_omp_get_wtime() double start; double end; double measured_time; - double wait_time = 0.25; + double wait_time = 1.0; start = 0; end = 0; start = omp_get_wtime(); |